summaryrefslogtreecommitdiff
path: root/Modules/_dbmmodule.c
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-33383: Fix crash in get() of the dbm.ndbm database object. (GH-6630...Miss Islington (bot)2018-04-291-2/+2
* bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-...Miss Islington (bot)2018-02-261-4/+17
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-161-1/+1
* Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE whereverSerhiy Storchaka2017-01-231-2/+1
* Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()Serhiy Storchaka2017-01-221-1/+1
* - Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-2/+2
|\
| * Issue #27332: Fixed the type of the first argument of module-level functionsSerhiy Storchaka2016-07-071-2/+2
* | Issue #25923: Added the const qualifier to static constant arrays.Serhiy Storchaka2015-12-251-4/+4
|/
* Issue #24000: Improved Argument Clinic's mapping of converters to legacyLarry Hastings2015-05-071-4/+5
* Issue #24001: Argument Clinic converters now use accept={type}Larry Hastings2015-05-041-4/+4
* Issue #20184: Converted _dbm and _gdbm modules to Argument Clinic.Serhiy Storchaka2015-04-171-61/+67
* Issue #23935: Argument Clinic's understanding of format unitsLarry Hastings2015-04-151-2/+2
* Issue #23944: Argument Clinic now wraps long impl prototypes at column 78.Larry Hastings2015-04-141-4/+6
* Issue #23501: Argumen Clinic now generates code into separate files by default.Serhiy Storchaka2015-04-031-70/+4
* Issue #20530: Argument Clinic's signature format has been revised again.Larry Hastings2014-02-081-4/+8
* #Issue 20456: Several improvements and bugfixes for Argument Clinic,Larry Hastings2014-01-311-29/+15
* Issue #20326: Argument Clinic now uses a simple, unique signature toLarry Hastings2014-01-281-5/+5
* Issue #20390: Small fixes and improvements for Argument Clinic.Larry Hastings2014-01-251-1/+1
* Issue #20189: Four additional builtin types (PyTypeObject,Larry Hastings2014-01-241-6/+6
* Two minor Argument Clinic bugfixes: use the name of the class in theLarry Hastings2014-01-221-4/+5
* Issue #20226: Major improvements to Argument Clinic.Larry Hastings2014-01-161-3/+3
* Issue #19273: The marker comments Argument Clinic uses have been changedLarry Hastings2014-01-071-12/+12
* Issue #19296: Silence compiler warning in dbm_open.Christian Heimes2013-12-061-1/+2
* Issue #19674: inspect.signature() now produces a correct signatureLarry Hastings2013-11-231-12/+11
* Issue #19730: Argument Clinic now supports all the existing PyArgLarry Hastings2013-11-231-23/+84
* Argument Clinic: rename "self" to "module" for module-level functions.Larry Hastings2013-11-181-5/+5
* Close #19282: Native context management in dbmNick Coghlan2013-11-171-0/+17
* Issue #19287: Fixed the "in" operator of dbm.ndbm databases for stringSerhiy Storchaka2013-10-251-2/+2
|\
| * Issue #19287: Fixed the "in" operator of dbm.ndbm databases for stringSerhiy Storchaka2013-10-241-2/+2
* | Issue #16612: Add "Argument Clinic", a compile-time preprocessorLarry Hastings2013-10-191-10/+61
* | Issue #18722: Remove uses of the "register" keyword in C code.Antoine Pitrou2013-08-131-7/+7
* | #16135: Removal of OS/2 support (Modules/*)Jesus Cea2012-10-051-4/+0
|/
* Implement PEP 393.Martin v. Löwis2011-09-281-4/+8
* Remove useless argument of _PyUnicode_AsDefaultEncodedString()Victor Stinner2011-03-021-1/+1
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-309/+309
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Define PY_SSIZE_T_CLEAN at the top of the dbm module. This should fix theMark Dickinson2009-01-161-0/+1
* issue 4483 - _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
* fixes deferred/release blocker issue #3797: Fixed the dbm, marshal, mmap,Gregory P. Smith2008-09-061-5/+5
* #3247: get rid of Py_FindMethodAmaury Forgeot d'Arc2008-07-021-8/+10
* 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
* 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