Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | gh-90473: Make chmod a dummy on WASI, skip chmod tests (GH-93534) | Christian Heimes | 2022-06-06 |
| | | | WASI does not have the ``chmod(2)`` syscall yet. | ||
* | bpo-40563: Support pathlike objects on dbm/shelve (GH-21849) | Henry-Joseph Audéoud | 2021-09-10 |
| | | | | Co-authored-by: Hakan Çelik <hakancelik96@outlook.com> | ||
* | bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25145) | Inada Naoki | 2021-04-04 |
| | | | | | | | | | | | | | | | | | | | * test_asyncio * test_bz2 * test_math * test_cmath * test_cmd_line * test_cmd_line_script * test_compile * test_contextlib * test_profile * ctypes/test/test_find * test_multiprocessing * test_configparser * test_csv * test_dbm_dumb * test_decimal * test_difflib * os.fdopen() calls io.text_encoding() to emit EncodingWarning for right place. | ||
* | bpo-40275: Use new test.support helper submodules in tests (GH-20849) | Hai Shi | 2020-06-25 |
| | |||
* | bpo-22831: Use "with" to avoid possible fd leaks in tests (part 1). (GH-10928) | Serhiy Storchaka | 2019-03-05 |
| | |||
* | Clean up code which checked presence of os.{stat,lstat,chmod} (#11643) | Anthony Sottile | 2019-02-25 |
| | |||
* | bpo-33106: change dbm key deletion error for readonly file from KeyError to ↵ | Xiang Zhang | 2018-12-12 |
| | | | | | | dbm.error (#6295) | ||
* | bpo-33383: Fix crash in get() of the dbm.ndbm database object. (#6630) | Serhiy Storchaka | 2018-04-29 |
| | |||
* | bpo-32922: dbm.open() now encodes filename with the filesystem encoding. ↵ | Serhiy Storchaka | 2018-02-26 |
| | | | | (GH-5832) | ||
* | bpo-32749: Make dbm.dumb databases more cosistent with other dbm databases. ↵ | Serhiy Storchaka | 2018-02-05 |
| | | | | (#5497) | ||
* | Remove unused imports. | Serhiy Storchaka | 2016-12-16 |
| | |||
* | Issue #28847: A deprecation warning is now emitted if the index file is missed | Serhiy Storchaka | 2016-12-07 |
| | | | | | 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 |
|\ | | | | | | | 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 |
| | | | | | | | | 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 |
|/ | | | | | behavior: creating a database in 'r' and 'w' modes and modifying a database in 'r' mode. | ||
* | Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb | Serhiy Storchaka | 2015-02-16 |
|\ | | | | | | | module. Original patch by Claudiu Popa. | ||
| * | Issue #22885: Fixed arbitrary code execution vulnerability in the dbm.dumb | Serhiy Storchaka | 2015-02-16 |
| | | | | | | | | module. Original patch by Claudiu Popa. | ||
* | | Issue #18039: dbm.dump.open() now always creates a new database when the | Serhiy Storchaka | 2014-06-10 |
|/ | | | | flag has the value 'n'. Patch by Claudiu Popa. | ||
* | make operations on closed dumb databases raise a consistent exception ↵ | Benjamin Peterson | 2014-04-26 |
| | | | | | | (closes #19385) Patch by Claudiu Popa. | ||
* | Issue #19936: Added executable bits or shebang lines to Python scripts which | Serhiy Storchaka | 2014-01-16 |
|\ | | | | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang lines in the unittestgui and checkpip scripts. | ||
| * | Issue #19936: Added executable bits or shebang lines to Python scripts which | Serhiy Storchaka | 2014-01-16 |
| | | | | | | | | | | | | | | requires them. Disable executable bits and shebang lines in test and benchmark files in order to prevent using a random system python, and in source files of modules which don't provide command line interface. Fixed shebang line to use python3 executable in the unittestgui script. | ||
| * | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 |
| | | |||
* | | Close #19282: Native context management in dbm | Nick Coghlan | 2013-11-17 |
| | | |||
* | | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 |
|/ | |||
* | #17082: test_dbm* now work with unittest test discovery. Patch by Zachary Ware. | Ezio Melotti | 2013-03-01 |
| | |||
* | Properly close files in test_dbm_dumb. | Brett Cannon | 2010-10-29 |
| | |||
* | convert shebang lines: python -> python3 | Benjamin Peterson | 2010-03-11 |
| | |||
* | use assert[Not]In where appropriate | Benjamin Peterson | 2010-01-19 |
| | | | | A patch from Dave Malcolm. | ||
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 |
| | |||
* | dbm.gnu and dbm.ndbm accept both strings and bytes as keys and values. For the | Brett Cannon | 2008-11-25 |
| | | | | | | former they are converted to bytes before being written to the DB. Closes issue 3799. Reviewed by Skip Montanaro. | ||
* | Make dbm.dumb encode strings as UTF-8. Also fix it so it accepts bytes and | Brett Cannon | 2008-11-21 |
| | | | | | | strings. Closes issue #3799. | ||
* | Create the dbm package from PEP 3108. #2881. | Georg Brandl | 2008-05-26 |