summaryrefslogtreecommitdiffstats
path: root/Modules/_dbmmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Remove redundant check in dbm.open() (GH-111844)Serhiy Storchaka2023-11-081-5/+0
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-171-0/+5
* gh-107122: Add clear method to dbm.ndbm module (gh-107126)Dong-hee Na2023-07-231-0/+33
* gh-104922: remove PY_SSIZE_T_CLEAN (#106315)Inada Naoki2023-07-021-1/+0
* gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)Eric Snow2023-05-051-0/+1
* gh-99300: Use Py_NewRef() in Modules/ directory (#99466)Victor Stinner2022-11-141-4/+2
* GH-46412: More efficient bool() for ndbm/_gdbmmodule (#96692)Guido van Rossum2022-09-091-0/+32
* gh-89452: Prefer gdbm-compat over ndbm (#92208)Łukasz Langa2022-05-031-4/+4
* bpo-46541: Remove usage of _Py_IDENTIFIER from dbms modules (GH-31358)Dong-hee Na2022-02-161-3/+1
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-0/+1
* bpo-45747: Detect gdbm/dbm dependencies in configure (GH-29467)Christian Heimes2021-11-101-13/+19
* bpo-40563: Support pathlike objects on dbm/shelve (GH-21849)Henry-Joseph Audéoud2021-09-101-4/+5
* bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351)Erlend Egeberg Aasland2021-06-171-1/+1
* bpo-42972: Fully support GC for pyexpat, unicodedata, and dbm/gdbm heap types...Erlend Egeberg Aasland2021-05-271-5/+15
* Do not use Py_ssize_clean_t (GH-25940)Inada Naoki2021-05-081-5/+4
* bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)Erlend Egeberg Aasland2021-04-301-1/+1
* bpo-1635741: Port _dbm module to multiphase initialization (GH-20848)Dong-hee Na2020-06-151-132/+170
* bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)Dong-hee Na2020-02-171-1/+1
* bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)Victor Stinner2020-02-071-1/+1
* bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)Jeroen Demeyer2019-07-081-1/+1
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-311-2/+2
* bpo-33106: change dbm key deletion error for readonly file from KeyError to d...Xiang Zhang2018-12-121-3/+12
* bpo-34248: Add filename to error raised in {gnu,ndbm}.open() (GH-8590)Zsolt Cserna2018-09-271-1/+1
* bpo-33383: Fix crash in get() of the dbm.ndbm database object. (#6630)Serhiy Storchaka2018-04-291-2/+2
* bpo-32922: dbm.open() now encodes filename with the filesystem encoding. (GH-...Serhiy Storchaka2018-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-081-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-161-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-091-4/+8
* #Issue 20456: Several improvements and bugfixes for Argument Clinic,Larry Hastings2014-02-011-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-261-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-051-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