summaryrefslogtreecommitdiffstats
path: root/Lib/dbm/dumb.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumbSerhiy Storchaka2015-02-151-1/+2
| | | | module. Original patch by Claudiu Popa.
* Issue #21729: Used the "with" statement in the dbm.dumb module to ensureSerhiy Storchaka2014-06-251-36/+33
| | | | files closing. Patch by Claudiu Popa.
* Restore performance of some dumb database methods (regression introduced by ↵Serhiy Storchaka2014-05-281-8/+19
| | | | #19385).
* make operations on closed dumb databases raise a consistent exception ↵Benjamin Peterson2014-04-261-0/+12
| | | | | | (closes #19385) Patch by Claudiu Popa.
* 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
| | | | | | at least OS X where the default is macroman. Closes issue #4382.
* Make dbm.dumb encode strings as UTF-8. Also fix it so it accepts bytes andBrett Cannon2008-11-211-11/+17
| | | | | | strings. Closes issue #3799.
* Create the dbm package from PEP 3108. #2881.Georg Brandl2008-05-261-0/+257