1. 5951f23 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  2. affac00 Issue #24703: Fixed resource leak on error in bsddb.verify(). by Serhiy Storchaka · 9 years ago
  3. 98a9722 Issue #20437: Fixed 43 potential bugs when deleting objects references. by Serhiy Storchaka · 10 years ago
  4. 4950a3b - Issue #17477: Update the bsddb module to pybsddb 5.3.0, supporting by doko@ubuntu.com · 11 years ago
  5. 2ab4a91 Berkeley DB: Erratic behaviour of "DBEnv->rep_elect()" because a typo by Jesus Cea · 12 years ago
  6. 7711273 Use bitwise instead of logical or for flags. by Stefan Krah · 13 years ago
  7. bf088f8 Issue #9675: Final touch by Jesus Cea · 14 years ago
  8. 84f2c32 Issue #9675: better error handling in bsddb by Jesus Cea · 14 years ago
  9. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  10. 6557aac pybsddb 4.8.4 integration. Please, comment in issue #8156 by Jesus Cea · 14 years ago
  11. 54cc539 - Issue #6949: Allow the _bsddb extension to be built with db-4.8.x. by Matthias Klose · 14 years ago
  12. e7901c5 #7808: Fix reference leaks in _bsddb and related tests. by Florent Xicluna · 14 years ago
  13. 5cd5f12 Bugfix for issue3885 and 'DB.verify()' crash. by Jesus Cea · 16 years ago
  14. ac25fab Fix some leaks - Neal Norwitz by Jesus Cea · 16 years ago
  15. 4907d27 Update bsddb code to version 4.7.3pre2. This code should by Jesus Cea · 16 years ago
  16. c5a11fa bsddb module updated to version 4.7.2devel9. by Jesus Cea · 16 years ago
  17. 572226c Define macros so that this still compiles on Python prior to r63675. by Gregory P. Smith · 16 years ago
  18. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  19. ca3939c bsddb module updated to version 4.7.0 by Jesus Cea · 16 years ago
  20. 664782e issue2858: Fix potential memory corruption when bsddb.db.DBEnv.lock_get by Gregory P. Smith · 16 years ago
  21. ef9764f bsddb module updated to version 4.6.4 by Jesus Cea · 16 years ago
  22. 83c9201 Fix typo. by Martin v. Löwis · 16 years ago
  23. eeed5b7 Merge this fix from the pybsddb tree: by Gregory P. Smith · 16 years ago
  24. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  25. fc00669 * db->get_types is only available in BerkeleyDB >= 4.2 by Gregory P. Smith · 17 years ago
  26. ac11e02 Add the bsddb.db.DBEnv.lock_id_free method. by Gregory P. Smith · 17 years ago
  27. ec10a4a Fixes bug 477182 on pybsddb.sf.net. DB objects now load the flags and by Gregory P. Smith · 17 years ago
  28. aae141a Fix bug introduced in revision 58385. Database keys could no longer by Gregory P. Smith · 17 years ago
  29. f3ca169 Get this module to compile with bsddb versions prior to 4.3 by Neal Norwitz · 17 years ago
  30. 088beae Get rid of compiler warning about retval being used (returned) without by Neal Norwitz · 17 years ago
  31. 10bed54 Fix a double free when positioning a database cursor to a non-existant by Gregory P. Smith · 17 years ago
  32. 3925053 Splits Modules/_bsddb.c up into bsddb.h and _bsddb.c and adds a C API by Gregory P. Smith · 17 years ago
  33. e70be5c Stab in the dark attempt to fix the test_bsddb3 failure on sparc and S-390 by Gregory P. Smith · 17 years ago
  34. f805785 email address update by Gregory P. Smith · 17 years ago
  35. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  36. 994ebed Backout the original 'fix' to 1721309 which had no effect. by Neal Norwitz · 17 years ago
  37. 4868ef8 Whoops, need to pay attention to those test failures. by Neal Norwitz · 17 years ago
  38. 59f58aa Clear data so random memory does not get freed. Will backport. by Neal Norwitz · 17 years ago
  39. bd77c03 Accomodate 64 bit time_t in the _bsddb module. by Kristján Valur Jónsson · 17 years ago
  40. 11a70c3 bump module version to match supported berkeleydb version by Gregory P. Smith · 18 years ago
  41. 8b96a35 Support linking of the bsddb module against BerkeleyDB 4.5.x by Gregory P. Smith · 18 years ago
  42. 4fe4423 Bug #1599782: Fix segfault on bsddb.db.DB().type(). by Neal Norwitz · 18 years ago
  43. 2fa0679 Fixes a bug with bsddb.DB.stat where the flags and txn keyword by Gregory P. Smith · 18 years ago
  44. 5aa9689 Handle malloc and fopen failures more gracefully. by Neal Norwitz · 18 years ago
  45. 641cddf - pybsddb Bug #1527939: bsddb module DBEnv dbremove and dbrename by Gregory P. Smith · 18 years ago
  46. dce937f Ensure we don't write beyond errText. I think I got this right, but by Neal Norwitz · 18 years ago
  47. e75cad6 Fix memory leak reported by valgrind while running test_subprocess by Neal Norwitz · 18 years ago
  48. 70ee3cc Get rid of function pointer cast. by Martin v. Löwis · 18 years ago
  49. 09a29fa Cleanup Py_ssize_t a little (get rid of second #ifdef) by Neal Norwitz · 18 years ago
  50. b4fcf8d Fix Coverity # 146. newDBSequenceObject would deref dbobj, so it can't be NULL. by Neal Norwitz · 18 years ago
  51. bb21b2c BSequence_set_range(): Rev 46688 ("Fix a bunch of by Tim Peters · 18 years ago
  52. dd2a6bf Fix a bunch of parameter strings by Neal Norwitz · 18 years ago
  53. 3c228b1 - bsddb: the __len__ method of a DB object has been fixed to return correct by Gregory P. Smith · 18 years ago
  54. 372b583 * fix DBCursor.pget() bug with keyword argument names when no data= is by Gregory P. Smith · 18 years ago
  55. f0547d0 * add support for DBSequence objects [patch #1466734] by Gregory P. Smith · 18 years ago
  56. db8a807 * support DBEnv.lsn_reset() method on BerkeleyDB >= 4.4 [patch #1494902] by Gregory P. Smith · 18 years ago
  57. 76a82e8 * support DBEnv.log_stat() method on BerkeleyDB >= 4.0 [patch #1494885] by Gregory P. Smith · 18 years ago
  58. bad4745 fix a bug in the previous commit. don't leak empty list on error return and by Gregory P. Smith · 18 years ago
  59. 3dd2002 bugfix: when log_archive was called with the DB_ARCH_REMOVE flag present by Gregory P. Smith · 18 years ago
  60. 96a8c39 Make use of METH_O and METH_NOARGS where possible. by Georg Brandl · 18 years ago
  61. 7f5b6f4 Fix bsddb.db.DBError derived exceptions so they can be unpickled. by Gregory P. Smith · 18 years ago
  62. b2820ae Fix another leak in bsddb, and avoid use of uninitialized value -- funny how by Thomas Wouters · 18 years ago
  63. b315383 Clean up _bsddb.c: add a couple dozen missing Py_DECREF()'s, a handful of by Thomas Wouters · 18 years ago
  64. ef1701f Add additional missing checks for return vals of PyTuple_New(). by Georg Brandl · 18 years ago
  65. 89ba381 Fix gcc 4.0.x warning about use of uninitialized value. by Thomas Wouters · 18 years ago
  66. 098f694 Coverity found bug: test result of PyTuple_New() against NULL before use. by Thomas Wouters · 18 years ago
  67. 9d63cca Fix DBEnv's set_tx_timestamp wrapper to be slightly more correct on by Thomas Wouters · 18 years ago
  68. 85b1052 Another bit of unconstification. by Tim Peters · 18 years ago
  69. 02cbf4a More unconsting. by Martin v. Löwis · 18 years ago
  70. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  71. fd049a6 maintain support for older python versions in this module so that it by Gregory P. Smith · 18 years ago
  72. 8a47404 Add wrapper for DBEnv.set_tx_timeout method to allow time based DB_RECOVER by Gregory P. Smith · 18 years ago
  73. 62a2112 Fix bug #1413192, fix seg fault in bsddb if a txn was deleted before the env. by Neal Norwitz · 18 years ago
  74. 4e414d8 commits sourceforge patch #1407992 by neil.norwitz. by Gregory P. Smith · 18 years ago
  75. 29602d2 Support for BerkeleyDB 4.4 (tested against 4.4.20 as well as all the by Gregory P. Smith · 18 years ago
  76. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 18 years ago
  77. 40c6b47 Fix errors on 64-bit platforms. Will backport by Neal Norwitz · 19 years ago
  78. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  79. 8456235 Get bsddb module to compile with version 3.2 of BSD DB. by Neal Norwitz · 19 years ago
  80. 8966d3d remove c++ style comment by Gregory P. Smith · 19 years ago
  81. ac741c5 change set_bt_compare() callback comparison function to only take two by Gregory P. Smith · 19 years ago
  82. 91116b6 additional sanity check. secondaryDB cannot be closed. by Gregory P. Smith · 19 years ago
  83. 692ca9a fixes pybsddb SF bug id 1215432. DB.associate() would crash when a by Gregory P. Smith · 19 years ago
  84. e947706 pybsddb 4.3.2: by Gregory P. Smith · 19 years ago
  85. e4ed2de pybsddb 4.3.1, adds support for DB.set_bt_compare database btree comparison by Gregory P. Smith · 19 years ago
  86. 8a6a59c fixed compilation against BerkeleyDB 3.2.9 (sf bug # 1077040) by Gregory P. Smith · 20 years ago
  87. 8b7e917 * Adds support for building against BerkeleyDB 4.3.21 by Gregory P. Smith · 20 years ago
  88. 442c9fc SF bug 1017405: the keys() values() and items() DB methods were by Gregory P. Smith · 20 years ago
  89. 37b0c1d Fix memory leak and bump the version per Greg by Neal Norwitz · 20 years ago
  90. b4a5581 Cleanup support for older pythons (perhaps it should be removed?) by Neal Norwitz · 20 years ago
  91. 19699a9 Adds support for DB.pget and DBCursor.pget methods. by Gregory P. Smith · 20 years ago
  92. 31c5065 Add weakref support to all bsddb.db objects. by Gregory P. Smith · 20 years ago
  93. 589c6ab raise the module minor version. by Gregory P. Smith · 20 years ago
  94. dc5af70 SF patch / bug #967763 by Gregory P. Smith · 20 years ago
  95. 2786d90 A few more PyThreadState_Get to PyThreadState_GET conversions by Nicholas Bastin · 20 years ago
  96. 0c65771 fixes SF bug 914019 - DB.has_key was not honoring its txn argument by Gregory P. Smith · 20 years ago
  97. a7befda Fixes SF bug # 778421 by Gregory P. Smith · 20 years ago
  98. f073b75 Removing TODO comment for None keys, as suggested by Neal Norwitz. by Gustavo Niemeyer · 20 years ago
  99. 8974f72 When key is None, give up if _DB_get_type() returns -1 as well. by Gustavo Niemeyer · 20 years ago
  100. 024f2de Fixing #880531: raise TypeError when trying to use a None key with RECNO by Gustavo Niemeyer · 20 years ago