| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-45500: Rewrite test_dbm (GH-29002) | Serhiy Storchaka | 2021-10-19 | 1 | -69/+57 |
|
|
* | bpo-5846: Do not use obsolete unittest functions. (GH-28303) | Serhiy Storchaka | 2021-09-13 | 1 | -3/+2 |
|
|
* | bpo-40563: Support pathlike objects on dbm/shelve (GH-21849) | Henry-Joseph Audéoud | 2021-09-10 | 1 | -20/+37 |
|
|
* | bpo-40275: Use new test.support helper submodules in tests (GH-21315) | Hai Shi | 2020-07-06 | 1 | -8/+9 |
|
|
* | bpo-41043: Escape literal part of the path for glob(). (GH-20994) | Serhiy Storchaka | 2020-06-20 | 1 | -1/+1 |
|
|
* | Use more specific asserts in dbm tests. (GH-7786) | Serhiy Storchaka | 2018-06-19 | 1 | -1/+1 |
|
|
* | bpo-33752: Fix a file leak in test_dbm. (GH-7376) | Serhiy Storchaka | 2018-06-05 | 1 | -4/+2 |
|
|
* | bpo-31026: Fix test_dbm if dbm.ndbm is build with Berkeley DB. (GH-6632) | Serhiy Storchaka | 2018-04-29 | 1 | -2/+15 |
|
|
* | bpo-33383: Fix crash in get() of the dbm.ndbm database object. (#6630) | Serhiy Storchaka | 2018-04-29 | 1 | -0/+9 |
|
|
* | Issue #23277: Remove unused sys and os imports | Berker Peksag | 2016-04-24 | 1 | -1/+0 |
|
|
* | Issue #19936: Added executable bits or shebang lines to Python scripts which | Serhiy Storchaka | 2014-01-16 | 1 | -1/+0 |
|\ |
|
| * | Issue #19936: Added executable bits or shebang lines to Python scripts which | Serhiy Storchaka | 2014-01-16 | 1 | -1/+0 |
|
|
* | | #17198: merge with 3.3. | Ezio Melotti | 2013-07-07 | 1 | -2/+16 |
|\ \
| |/ |
|
| * | #17198: Fix a NameError in the dbm module. Patch by Valentina Mukhamedzhanova. | Ezio Melotti | 2013-07-07 | 1 | -2/+16 |
|
|
* | | #17082: merge with 3.3. | Ezio Melotti | 2013-03-01 | 1 | -10/+10 |
|\ \
| |/ |
|
| * | #17082: test_dbm* now work with unittest test discovery. Patch by Zachary Ware. | Ezio Melotti | 2013-03-01 | 1 | -10/+10 |
|
|
* | | Replace IOError with OSError (#16715) | Andrew Svetlov | 2012-12-25 | 1 | -1/+1 |
|/ |
|
* | Issue #12451: Add support.create_empty_file() | Victor Stinner | 2011-06-30 | 1 | -2/+2 |
|
|
* | Fix #11491. When dbm.open was called with a file which already exists and | briancurtin | 2011-03-14 | 1 | -0/+8 |
|
|
* | Merged revisions 88631 via svnmerge from | Senthil Kumaran | 2011-02-26 | 1 | -1/+1 |
|
|
* | convert shebang lines: python -> python3 | Benjamin Peterson | 2010-03-11 | 1 | -1/+1 |
|
|
* | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -1/+1 |
|
|
* | use assert[Not]In where appropriate | Benjamin Peterson | 2010-01-19 | 1 | -3/+3 |
|
|
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -3/+3 |
|
|
* | Merged revisions 70734,70775,70856,70874,70876-70877 via svnmerge | R. David Murray | 2009-03-31 | 1 | -1/+3 |
|
|
* | fix merge boo-boo | Benjamin Peterson | 2008-10-11 | 1 | -2/+2 |
|
|
* | merge from trunk | Benjamin Peterson | 2008-10-11 | 1 | -0/+17 |
|
|
* | #3929: dbm.open() would try to raise a tuple. This does not work anymore wit... | Amaury Forgeot d'Arc | 2008-09-25 | 1 | -0/+3 |
|
|
* | Make db modules' error classes inherit IOError. | Georg Brandl | 2008-05-28 | 1 | -24/+27 |
|
|
* | Rename test file to its proper module name. | Georg Brandl | 2008-05-26 | 1 | -0/+147 |
|
|
* | Create the dbm package from PEP 3108. #2881. | Georg Brandl | 2008-05-26 | 1 | -40/+0 |
|
|
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -4/+4 |
|
|
* | Merged revisions 61431,61433-61436,61439,61444,61449-61450,61453,61458,61465,... | Christian Heimes | 2008-03-18 | 1 | -52/+31 |
|
|
* | Merged revisions 61189-61190,61192,61194-61195,61198-61199 via svnmerge from | Christian Heimes | 2008-03-03 | 1 | -7/+13 |
|
|
* | Merged revisions 60990-61002 via svnmerge from | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
|
|
* | Raise statement normalization in Lib/test/. | Collin Winter | 2007-08-29 | 1 | -1/+1 |
|
|
* | The dbm module should use bytes for keys. This makes test_shelve pass. | Guido van Rossum | 2007-08-14 | 1 | -3/+3 |
|
|
* | Remove the ability to slice/index on exceptions per PEP 352. | Brett Cannon | 2007-02-27 | 1 | -1/+1 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -1/+1 |
|
|
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -1/+2 |
|
|
* | Don't use a fixed temporary name (gdbm). | Guido van Rossum | 2006-08-25 | 1 | -2/+2 |
|
|
* | Get rid of dict.has_key(). Boy this has a lot of repercussions! | Guido van Rossum | 2006-08-18 | 1 | -1/+1 |
|
|
* | Skip test_dbm if we can't write to the file | Neal Norwitz | 2002-11-02 | 1 | -31/+43 |
|
|
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
|
|
* | Check that f.keys() == [] right after creation -- this prevents bugs | Guido van Rossum | 2001-03-22 | 1 | -1/+2 |
|
|
* | a bold attempt to fix things broken by MAL's verify patch: import | Fredrik Lundh | 2001-01-17 | 1 | -1/+1 |
|
|
* | This patch removes all uses of "assert" in the regression test suite | Marc-André Lemburg | 2001-01-17 | 1 | -1/+1 |
|
|
* | Fix up the cleanup of the temporary DB so it works for BSD DB's | Fred Drake | 2000-09-18 | 1 | -4/+12 |
|
|
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -2/+2 |
|
|
* | Many scripts, but small changes. Update the way the scripts obtain the | Roger E. Masse | 1996-12-20 | 1 | -1/+6 |
|
|