summaryrefslogtreecommitdiffstats
path: root/Modules/_bsddb.c
Commit message (Expand)AuthorAgeFilesLines
* remove bsddbBenjamin Peterson2008-09-031-7522/+0
* Fix some leaks - Neal NorwitzJesus Cea2008-09-031-3/+5
* bsddb code updated to version 4.7.3pre2. This code is the same thanJesus Cea2008-08-311-970/+2408
* Merged revisions 65654 via svnmerge fromMartin v. Löwis2008-08-131-2/+2
* #3247 Get rid of Py_FindMethod; use tp_members instead.Amaury Forgeot d'Arc2008-07-021-61/+50
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-4/+20
* Fixed _bsddb key allocation errors.Alexandre Vassalotti2008-06-101-0/+4
* Remove locking from buffer protocol as-per discussion.Travis E. Oliphant2008-06-061-6/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-14/+14
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-3/+3
* use PyBUF_LOCK instead of PyBUF_SIMPLE for bsddb data access as it'll oftenGregory P. Smith2008-03-171-4/+3
* Merged revisions 60481,60485,60489-60520,60523-60527,60530-60533,60535-60538,...Christian Heimes2008-02-031-2/+6
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-15/+15
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-34/+34
* #1535: rename __builtin__ module to builtins.Georg Brandl2007-12-021-1/+1
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-15/+19
* Merged revisions 58817-58861 via svnmerge fromGuido van Rossum2007-11-051-15/+25
* Merged revisions 58742-58816 via svnmerge fromGuido van Rossum2007-11-021-0/+4
* Fixes issue1371 and reenables those tests.Gregory P. Smith2007-11-011-1/+15
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-183/+28
* Merge 58343: attempt to fix DBSequence.get_key() to not fail or crash.Gregory P. Smith2007-10-061-1/+7
* Make Modules/_bsddb.c and PC/_winreg.c compile again by renamingThomas Heller2007-09-241-38/+38
* email address updateGregory P. Smith2007-09-091-4/+4
* Change to use the new buffer API instead of bytes objects for both keys andGregory P. Smith2007-08-281-136/+256
* Fix logic bug that triggered assert.Guido van Rossum2007-08-241-1/+2
* Require strict bytes objects for all bsddb.db input values.Gregory P. Smith2007-08-231-3/+6
* PyErr_Warn is deprecated in 2.5 - goes away for 3.0Skip Montanaro2007-08-121-5/+9
* Fix most of the bsddb3 tests.Martin v. Löwis2007-08-081-18/+18
* Make bsddb use bytes as keys and values. Add StringKeysMartin v. Löwis2007-08-051-35/+30
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-26/+20
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-5/+9
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-0/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-1/+21
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-0/+4
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-1/+9
* Cruft removal:Neal Norwitz2006-12-281-2/+2
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-4/+2
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-211-2/+8
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-24/+30
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-6/+6
* Merge the rest of the trunk.Thomas Wouters2006-06-081-17/+577
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-4/+4
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-6/+22
* Finish getting rid of statichere/staticforwardNeal Norwitz2006-03-221-6/+6
* Fix another leak in bsddb, and avoid use of uninitialized value -- funny howThomas Wouters2006-03-121-1/+2
* Clean up _bsddb.c: add a couple dozen missing Py_DECREF()'s, a handful ofThomas Wouters2006-03-081-65/+73
* Add additional missing checks for return vals of PyTuple_New().Georg Brandl2006-03-071-66/+65
* Fix gcc 4.0.x warning about use of uninitialized value.Thomas Wouters2006-03-071-1/+1
* Coverity found bug: test result of PyTuple_New() against NULL before use.Thomas Wouters2006-03-071-6/+6
* Fix DBEnv's set_tx_timestamp wrapper to be slightly more correct onThomas Wouters2006-03-011-4/+5