Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | bpo-40563: Support pathlike objects on dbm/shelve (GH-21849) | Henry-Joseph Audéoud | 2021-09-10 | 1 | -3/+4 |
| | | | | Co-authored-by: Hakan Çelik <hakancelik96@outlook.com> | ||||
* | Clean up code which checked presence of os.{stat,lstat,chmod} (#11643) | Anthony Sottile | 2019-02-25 | 1 | -2/+1 |
| | |||||
* | bpo-33106: change dbm key deletion error for readonly file from KeyError to ↵ | Xiang Zhang | 2018-12-12 | 1 | -2/+2 |
| | | | | | | dbm.error (#6295) | ||||
* | bpo-32749: Make dbm.dumb databases more cosistent with other dbm databases. ↵ | Serhiy Storchaka | 2018-02-05 | 1 | -19/+7 |
| | | | | (#5497) | ||||
* | bpo-30144: Import collections ABC from collections.abc rather than ↵ | Serhiy Storchaka | 2017-04-24 | 1 | -2/+2 |
| | | | | collections. (#1263) | ||||
* | Issue #28847: A deprecation warning is now emitted if the index file is missed | Serhiy Storchaka | 2016-12-07 | 1 | -2/+7 |
| | | | | | and recreated in the 'r' and 'w' modes (will be an error in future Python releases). | ||||
* | Issue #28847: dbm.dumb now supports reading read-only files and no longer | Serhiy Storchaka | 2016-12-07 | 1 | -2/+5 |
|\ | | | | | | | writes the index file when it is not changed. | ||||
| * | Issue #28847: dbm.dumb now supports reading read-only files and no longer | Serhiy Storchaka | 2016-12-07 | 1 | -2/+6 |
| | | | | | | | | writes the index file when it is not changed. | ||||
* | | Issue #21708: Deprecated dbm.dumb behavior that differs from common dbm | Serhiy Storchaka | 2016-07-06 | 1 | -0/+18 |
|/ | | | | | behavior: creating a database in 'r' and 'w' modes and modifying a database in 'r' mode. | ||||
* | Issue #23865: close() methods in multiple modules now are idempotent and more | Serhiy Storchaka | 2015-04-10 | 1 | -2/+4 |
|\ | | | | | | | | | robust at shutdown. If needs to release multiple resources, they are released even if errors are occured. | ||||
| * | Issue #23865: close() methods in multiple modules now are idempotent and more | Serhiy Storchaka | 2015-04-10 | 1 | -2/+4 |
| | | | | | | | | | | robust at shutdown. If needs to release multiple resources, they are released even if errors are occured. | ||||
* | | Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb | Serhiy Storchaka | 2015-02-15 | 1 | -1/+2 |
|\ \ | |/ | | | | | module. Original patch by Claudiu Popa. | ||||
| * | Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb | Serhiy Storchaka | 2015-02-15 | 1 | -1/+2 |
| | | | | | | | | module. Original patch by Claudiu Popa. | ||||
* | | Issue #21729: Used the "with" statement in the dbm.dumb module to ensure | Serhiy Storchaka | 2014-06-25 | 1 | -36/+33 |
|\ \ | |/ | | | | | files closing. Patch by Claudiu Popa. | ||||
| * | Issue #21729: Used the "with" statement in the dbm.dumb module to ensure | Serhiy Storchaka | 2014-06-25 | 1 | -36/+33 |
| | | | | | | | | files closing. Patch by Claudiu Popa. | ||||
* | | Issue #18039: dbm.dump.open() now always creates a new database when the | Serhiy Storchaka | 2014-06-10 | 1 | -9/+18 |
|/ | | | | flag has the value 'n'. Patch by Claudiu Popa. | ||||
* | Restore performance of some dumb database methods (regression introduced by ↵ | Serhiy Storchaka | 2014-05-28 | 1 | -8/+19 |
| | | | | #19385). | ||||
* | make operations on closed dumb databases raise a consistent exception ↵ | Benjamin Peterson | 2014-04-26 | 1 | -0/+12 |
| | | | | | | (closes #19385) Patch by Claudiu Popa. | ||||
* | Close #19282: Native context management in dbm | Nick Coghlan | 2013-11-17 | 1 | -0/+6 |
| | |||||
* | Replace IOError with OSError (#16715) | Andrew Svetlov | 2012-12-25 | 1 | -3/+3 |
| | |||||
* | Issue #16706: get rid of os.error | Andrew Svetlov | 2012-12-18 | 1 | -2/+2 |
| | |||||
* | #6045: provide at least get() and setdefault() for all dbm modules. | Georg Brandl | 2010-12-04 | 1 | -2/+2 |
| | |||||
* | dbm.dumb was opening files without specifying the encoding. Caused problem on | Brett Cannon | 2008-11-24 | 1 | -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 and | Brett Cannon | 2008-11-21 | 1 | -11/+17 |
| | | | | | | strings. Closes issue #3799. | ||||
* | Create the dbm package from PEP 3108. #2881. | Georg Brandl | 2008-05-26 | 1 | -0/+257 |