History log of /external/python/cpython2/Lib/bsddb/dbshelve.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
e0ed2d75c8bce7f0fc76c55c957052aa8a0756f2 16-Jan-2014 Serhiy Storchaka <storchaka@gmail.com> Issue #19936: Added executable bits or shebang lines to Python scripts which
requires them. Disable executable bits and shebang lines in test and
benchmark files in order to prevent using a random system python, and in
source files of modules which don't provide command line interface.
/external/python/cpython2/Lib/bsddb/dbshelve.py
4950a3b6ccb91e0ffe937374836caa825e93c742 19-Mar-2013 doko@ubuntu.com <doko@ubuntu.com> - Issue #17477: Update the bsddb module to pybsddb 5.3.0, supporting
db-5.x, and dropping support for db-4.1 and db-4.2.
/external/python/cpython2/Lib/bsddb/dbshelve.py
6557aac599f1c22051ee61ba61c8c43add406e94 22-Mar-2010 Jesus Cea <jcea@jcea.es> pybsddb 4.8.4 integration. Please, comment in issue #8156
/external/python/cpython2/Lib/bsddb/dbshelve.py
651bc32a4ebfebfc69b0e7fd0a34abee40274bbb 11-Mar-2010 Benjamin Peterson <benjamin@python.org> use proper shebang lines
/external/python/cpython2/Lib/bsddb/dbshelve.py
48605be12883a486942e65bad07214ee6efe407e 24-Feb-2010 R. David Murray <rdmurray@bitdance.com> Issue 7975: in python 2.6 bsddb.dbshelve switched from DictMixin to
MutableMapping, and thereby lost functionality because the replacement
functionality was implemented incorrectly or incompletely). Since bsddb
isn't in py3k, this patch just goes back to using DictMixin in order to
correct the regression.
/external/python/cpython2/Lib/bsddb/dbshelve.py
8d3f130d41d0c3f437f37a18c624955ce8bf65d3 02-Feb-2010 Ezio Melotti <ezio.melotti@gmail.com> Fix idioms and a couple of py3k warnings. Patch by Florent Xicluna.
/external/python/cpython2/Lib/bsddb/dbshelve.py
63b0cb2f39e26be7f6b636ddd40cc8d6a1400d51 14-Oct-2009 Antoine Pitrou <solipsis@pitrou.net> Fix py3k warnings in bsddb
/external/python/cpython2/Lib/bsddb/dbshelve.py
4907d27c1fcc7bd990715d3023932433076e152f 31-Aug-2008 Jesus Cea <jcea@jcea.es> 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
/external/python/cpython2/Lib/bsddb/dbshelve.py
c5a11fabdb03d032f278f86e600bcdaafdb5d783 23-Jul-2008 Jesus Cea <jcea@jcea.es> bsddb module updated to version 4.7.2devel9.

This patch publishes the work done until now
for Python 3.0 compatibility. Still a lot
to be done.

When possible, we use 3.0 features in Python 2.6,
easing development and testing, and exposing internal
changes to a wider audience, for better test coverage.

Some mode details:
http://www.jcea.es/programacion/pybsddb.htm#bsddb3-4.7.2
/external/python/cpython2/Lib/bsddb/dbshelve.py
18eb1fa2dd0e4f6b80e1cc31fc712eebfc610154 13-May-2008 Jesus Cea <jcea@jcea.es> Testsuite for bsddb module, version 4.6.4
/external/python/cpython2/Lib/bsddb/dbshelve.py
5b63acd31e0e40c1a9a9e9762905b0054ff37994 29-Mar-2008 Benjamin Peterson <benjamin@python.org> #2503 make singletons compared with "is" not == or !=
Thanks to Wummel for the patch
/external/python/cpython2/Lib/bsddb/dbshelve.py
5d743fd187f59ef792373e026f0de4ada63a3387 14-Oct-2007 Gregory P. Smith <greg@mad-scientist.com> Fix an uncollectable reference leak in bsddb.db.DBShelf.append
/external/python/cpython2/Lib/bsddb/dbshelve.py
d40f126fffbb05e1f46dff3d2e0f3e8b1938de1c 12-Oct-2007 Gregory P. Smith <greg@mad-scientist.com> Fixes http://bugs.python.org/issue1233 - bsddb.dbshelve.DBShelf.append
was useless due to inverted logic. Also adds a test case for RECNO dbs
to test_dbshelve.
/external/python/cpython2/Lib/bsddb/dbshelve.py
b7de61bf49a6659663f54be6387c3445a40702d4 09-Oct-2007 Gregory P. Smith <greg@mad-scientist.com> Use the highest cPickle protocol in bsddb.dbshelve. This comes from
sourceforge pybsddb patch 1551443 by w_barnes.
/external/python/cpython2/Lib/bsddb/dbshelve.py
1281f76606cc4195f57d3446b42b97063c3adc1d 16-Mar-2004 Gregory P. Smith <greg@mad-scientist.com> * supply a more useful error message when append() is called on the
wrong type of database in dbshelve.
* fix a typo in the exception name when checking args
/external/python/cpython2/Lib/bsddb/dbshelve.py
41631e8f668c9c2c724731d207edcc39c6fcf38c 21-Sep-2003 Gregory P. Smith <greg@mad-scientist.com> Adds basic support for BerkeleyDB 4.2.x. Compiles and passes tests; new
features in BerkeleyDB not exposed. notably: the DB_MPOOLFILE interface
has not yet been wrapped in an object.

Adds support for building and installing bsddb3 in python2.3 that has
an older version of this module installed as bsddb without conflicts.
The pybsddb.sf.net build/packaged version of the module uses a
dynamicly loadable module called _pybsddb rather than _bsddb.
/external/python/cpython2/Lib/bsddb/dbshelve.py
0eadaac7dc3ae49974c105ff9e8c1e98a04d7d5a 24-Apr-2003 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/bsddb/dbshelve.py
9914227caa4f25b7442ea82cd6feab68821bb011 08-Feb-2003 Barry Warsaw <barry@python.org> Fix compatibility for earlier versions of Python (than 2.3), which
doesn't have UserDict.DictMixin.
/external/python/cpython2/Lib/bsddb/dbshelve.py
30a634e0a983f470e3663f93e182faed2128bbd9 05-Feb-2003 Raymond Hettinger <python@rcn.com> SF patch #674396: Apply UserDict.DictMixin to expand dbshelve and dbojb
to have a full dictionary interface.
/external/python/cpython2/Lib/bsddb/dbshelve.py
f71de3e9a017d698be8ee4db3e2ec5fbc68bfc8c 28-Jan-2003 Barry Warsaw <barry@python.org> Everything worked in both the distutils distro and in Python 2.3cvs,
so merge from the bsddb-bsddb3-schizo-branch back to the trunk.
/external/python/cpython2/Lib/bsddb/dbshelve.py
9a0d779c7d39ba5f4666eac7c3f913720198e0f8 30-Dec-2002 Barry Warsaw <barry@python.org> Port BerkeleyDB 4.1 support from the pybsddb project. bsddb is now at
version 4.1.1 and works with up to BerkeleyDB 4.1.25.
/external/python/cpython2/Lib/bsddb/dbshelve.py
77c06fbf942bf4c532d0f8d6f254882a9e5957ec 24-Nov-2002 Tim Peters <tim.peters@gmail.com> Whitespace normalization.
/external/python/cpython2/Lib/bsddb/dbshelve.py
7a3bae410df3dd0032509b97077d0c4d98276fdd 19-Nov-2002 Martin v. Löwis <martin@v.loewis.de> Replace bsddb3 and _db occurrences.
/external/python/cpython2/Lib/bsddb/dbshelve.py
6aa4a1f29ca575e25fc595857b2a5168a02c9780 19-Nov-2002 Martin v. Löwis <martin@v.loewis.de> Import PyBSDDB 3.4.0. Rename historical wrapper to bsddb185.
/external/python/cpython2/Lib/bsddb/dbshelve.py