summaryrefslogtreecommitdiffstats
path: root/Modules/_dbmmodule.c
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 69214 via svnmerge fromMark Dickinson2009-02-021-1/+1
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r69214 | mark.dickinson | 2009-02-02 20:36:42 +0000 (Mon, 02 Feb 2009) | 4 lines Issue #1717: rename tp_compare to tp_reserved. I'll change the type of tp_compare in a separate commit, for ease of reversion should things go wrong. ........
* Merged revisions 68638 via svnmerge fromMark Dickinson2009-01-161-0/+1
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r68638 | mark.dickinson | 2009-01-16 19:31:13 +0000 (Fri, 16 Jan 2009) | 3 lines Define PY_SSIZE_T_CLEAN at the top of the dbm module. This should fix the segfaults on the PPC64/Debian buildbots. ........
* issue4483: _dbm build failures on systems with gdbm_compat lib.Skip Montanaro2008-12-061-0/+3
|
* dbm.gnu and dbm.ndbm accept both strings and bytes as keys and values. For theBrett Cannon2008-11-251-2/+2
| | | | | | former they are converted to bytes before being written to the DB. Closes issue 3799. Reviewed by Skip Montanaro.
* fixes deferred/release blocker issue #3797: Fixed the dbm, marshal, mmap,Gregory P. Smith2008-09-061-5/+5
| | | | | ossaudiodev, & winreg modules to return bytes objects instead of bytearray objects.
* #3247: get rid of Py_FindMethodAmaury Forgeot d'Arc2008-07-021-8/+10
| | | | Third step: unix-only modules. Really remove the function this time.
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-4/+22
|
* Make db modules' error classes inherit IOError.Georg Brandl2008-05-281-1/+2
| | | | Stop dbm from importing every dbm module when imported.
* Renamed PyString to PyBytesChristian Heimes2008-05-261-3/+3
|
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-5/+5
|
* Create the dbm package from PEP 3108. #2881.Georg Brandl2008-05-261-0/+412