diff options
author | Jesus Cea <jcea@jcea.es> | 2008-08-31 14:00:51 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2008-08-31 14:00:51 (GMT) |
commit | 4907d27c1fcc7bd990715d3023932433076e152f (patch) | |
tree | f7e79e00d3e95785b6ff3d2d0b809e6d6e5e5779 /Modules/bsddb.h | |
parent | 82358691f77e33301df2916746474873b35ccafa (diff) | |
download | cpython-4907d27c1fcc7bd990715d3023932433076e152f.zip cpython-4907d27c1fcc7bd990715d3023932433076e152f.tar.gz cpython-4907d27c1fcc7bd990715d3023932433076e152f.tar.bz2 |
Update bsddb code to version 4.7.3pre2. This code should
be compatible with Python 3.0, also.
http://www.jcea.es/programacion/pybsddb.htm#bsddb3-4.7.3
Diffstat (limited to 'Modules/bsddb.h')
-rw-r--r-- | Modules/bsddb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/bsddb.h b/Modules/bsddb.h index a4f6db7..41f1db9 100644 --- a/Modules/bsddb.h +++ b/Modules/bsddb.h @@ -105,7 +105,7 @@ #error "eek! DBVER can't handle minor versions > 9" #endif -#define PY_BSDDB_VERSION "4.7.2devel9" +#define PY_BSDDB_VERSION "4.7.3pre2" /* Python object definitions */ @@ -134,7 +134,7 @@ typedef struct { PyObject* event_notifyCallback; struct DBObject *children_dbs; struct DBTxnObject *children_txns; - PyObject *private; + PyObject *private_obj; PyObject *rep_transport; PyObject *in_weakreflist; /* List of weak references */ } DBEnvObject; @@ -159,7 +159,7 @@ typedef struct DBObject { PyObject* associateCallback; PyObject* btCompareCallback; int primaryDBType; - PyObject *private; + PyObject *private_obj; PyObject *in_weakreflist; /* List of weak references */ } DBObject; |