Kaydet (Commit) 69acb433 authored tarafından Jesus Cea's avatar Jesus Cea

Python3.0 bsddb testsuite compatibility improvements

üst cde6dc9a
......@@ -67,6 +67,10 @@ if sys.version_info[0] >= 3 :
v = self._dbcursor.next_dup()
return self._fix(v)
def next_nodup(self) :
v = self._dbcursor.next_nodup()
return self._fix(v)
def put(self, key, value, flags=0, dlen=-1, doff=-1) :
if isinstance(key, str) :
key = bytes(key, charset)
......
......@@ -105,7 +105,7 @@
#error "eek! DBVER can't handle minor versions > 9"
#endif
#define PY_BSDDB_VERSION "4.7.3pre4"
#define PY_BSDDB_VERSION "4.7.3pre5"
/* Python object definitions */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment