summaryrefslogtreecommitdiff
path: root/Lib/dbm/dumb.py
Commit message (Expand)AuthorAgeFilesLines
* Clean up code which checked presence of os.{stat,lstat,chmod} (#11643)Anthony Sottile2019-02-251-2/+1
* bpo-33106: change dbm key deletion error for readonly file from KeyError to d...Xiang Zhang2018-12-121-2/+2
* bpo-32749: Make dbm.dumb databases more cosistent with other dbm databases. (...Serhiy Storchaka2018-02-051-19/+7
* bpo-30144: Import collections ABC from collections.abc rather than collection...Serhiy Storchaka2017-04-241-2/+2
* Issue #28847: A deprecation warning is now emitted if the index file is missedSerhiy Storchaka2016-12-071-2/+7
* Issue #28847: dbm.dumb now supports reading read-only files and no longerSerhiy Storchaka2016-12-071-2/+5
|\
| * Issue #28847: dbm.dumb now supports reading read-only files and no longerSerhiy Storchaka2016-12-071-2/+6
* | Issue #21708: Deprecated dbm.dumb behavior that differs from common dbmSerhiy Storchaka2016-07-061-0/+18
|/
* Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-2/+4
|\
| * Issue #23865: close() methods in multiple modules now are idempotent and moreSerhiy Storchaka2015-04-101-2/+4
* | Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumbSerhiy Storchaka2015-02-161-1/+2
|\ \ | |/
| * Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumbSerhiy Storchaka2015-02-161-1/+2
* | Issue #21729: Used the "with" statement in the dbm.dumb module to ensureSerhiy Storchaka2014-06-251-36/+33
|\ \ | |/
| * Issue #21729: Used the "with" statement in the dbm.dumb module to ensureSerhiy Storchaka2014-06-251-36/+33
* | Issue #18039: dbm.dump.open() now always creates a new database when theSerhiy Storchaka2014-06-101-9/+18
|/
* Restore performance of some dumb database methods (regression introduced by #...Serhiy Storchaka2014-05-281-8/+19
* make operations on closed dumb databases raise a consistent exception (closes...Benjamin Peterson2014-04-261-0/+12
* Close #19282: Native context management in dbmNick Coghlan2013-11-171-0/+6
* Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-3/+3
* Issue #16706: get rid of os.errorAndrew Svetlov2012-12-181-2/+2
* #6045: provide at least get() and setdefault() for all dbm modules.Georg Brandl2010-12-041-2/+2
* dbm.dumb was opening files without specifying the encoding. Caused problem onBrett Cannon2008-11-241-8/+10
* Make dbm.dumb encode strings as UTF-8. Also fix it so it accepts bytes andBrett Cannon2008-11-211-11/+17
* Create the dbm package from PEP 3108. #2881.Georg Brandl2008-05-261-0/+257