summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dbm_ndbm.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-107122: Add clear method to dbm.ndbm module (gh-107126)Dong-hee Na2023-07-231-0/+13
|
* GH-46412: More efficient bool() for ndbm/_gdbmmodule (#96692)Guido van Rossum2022-09-091-0/+14
|
* bpo-40563: Support pathlike objects on dbm/shelve (GH-21849)Henry-Joseph Audéoud2021-09-101-0/+9
| | | | Co-authored-by: Hakan Çelik <hakancelik96@outlook.com>
* bpo-40275: Use new test.support helper submodules in tests (GH-21785)Hai Shi2020-08-081-3/+2
|
* bpo-40275: Use new test.support helper submodules in tests (GH-21772)Hai Shi2020-08-071-3/+4
|
* bpo-40275: Use new test.support helper submodules in tests (GH-21412)Hai Shi2020-07-091-1/+2
|
* bpo-33106: change dbm key deletion error for readonly file from KeyError to ↵Xiang Zhang2018-12-121-0/+11
| | | | | | dbm.error (#6295)
* bpo-34248: Add filename to error raised in {gnu,ndbm}.open() (GH-8590)Zsolt Cserna2018-09-271-0/+6
| | | | | | Report the filename to the exception when raising {gdbm,dbm.ndbm}.error in dbm.gnu.open() and dbm.ndbm.open() functions, so it gets printed when the exception is raised, and can also be obtained by the filename attribute of the exception object.
* bpo-31026: Fix test_dbm if dbm.ndbm is build with Berkeley DB. (GH-6632)Serhiy Storchaka2018-04-291-0/+14
|
* bpo-33383: Fix crash in get() of the dbm.ndbm database object. (#6630)Serhiy Storchaka2018-04-291-1/+9
|
* bpo-32922: dbm.open() now encodes filename with the filesystem encoding. ↵Serhiy Storchaka2018-02-261-0/+37
| | | | (GH-5832)
* Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-241-1/+0
|
* Issue #23277: Remove unused sys and os importsBerker Peksag2016-04-241-1/+0
| | | | Patch by Jon Dufresne.
* - Remove execute permissions from test_dbm_gnu.py and test_dbm_ndbm.pydoko@ubuntu.com2013-11-191-0/+0
|\
| * - Remove execute permissions from test_dbm_gnu.py and test_dbm_ndbm.pydoko@ubuntu.com2013-11-191-0/+0
| |
* | Close #19282: Native context management in dbmNick Coghlan2013-11-171-0/+13
|/
* Issue #19287: Fixed the "in" operator of dbm.ndbm databases for stringSerhiy Storchaka2013-10-241-0/+1
| | | | argument. Original patch by Arfrever Frehtes Taifersar Arahesis.
* #17082: test_dbm* now work with unittest test discovery. Patch by Zachary Ware.Ezio Melotti2013-03-011-4/+1
|
* use assert[Not]In where appropriateBenjamin Peterson2010-01-191-1/+1
| | | | A patch from Dave Malcolm.
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-2/+2
|
* Allow skipping of regression tests not supported on windows. This reduces ↵Kristján Valur Jónsson2009-04-011-0/+1
| | | | noise in the regression test suite for py3k on Windows.
* dbm.gnu and dbm.ndbm accept both strings and bytes as keys and values. For theBrett Cannon2008-11-251-0/+2
| | | | | | former they are converted to bytes before being written to the DB. Closes issue 3799. Reviewed by Skip Montanaro.
* Create the dbm package from PEP 3108. #2881.Georg Brandl2008-05-261-0/+40