Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix this test. How could it ever have worked?! | Guido van Rossum | 2007-08-29 | 1 | -2/+3 |
| | |||||
* | applies the better dbm and shelve related unittests. bug 1007 from ↵ | Gregory P. Smith | 2007-08-24 | 1 | -9/+11 |
| | | | | larryhastings | ||||
* | Change shelve to require a bytes-oriented dict as | Martin v. Löwis | 2007-08-11 | 1 | -5/+35 |
| | | | | the underlying storage, and yet provide string keys. | ||||
* | Use test_support.unlink() instead of os.unlink(). | Guido van Rossum | 2007-05-18 | 1 | -4/+3 |
| | |||||
* | Fix the cleanup so that we're not left with shelftemp.db.* files. | Guido van Rossum | 2007-05-18 | 1 | -12/+10 |
| | | | | This does nothing to fix the tests though... | ||||
* | Removed deprecated method arguments from the shelve module. | Raymond Hettinger | 2004-12-05 | 1 | -8/+8 |
| | |||||
* | Rename class attribute containing the class to be tested, so the name is the | Walter Dörwald | 2004-06-02 | 1 | -1/+1 |
| | | | | same as for the string and sequence tests. | ||||
* | Port the dictionary tests from test_types.py to unittest. Collect as much | Walter Dörwald | 2004-05-31 | 1 | -3/+3 |
| | | | | | | mapping tests as possible in mapping_test.py and reuse the tests in test_dict.py, test_userdict.py, test_weakref.py, test_os.py and test_shelve.py. From SF patch #736962. | ||||
* | Patch #734231: Update RiscOS support. In particular, correct | Martin v. Löwis | 2003-05-10 | 1 | -1/+1 |
| | | | | riscospath.extsep, and use os.extsep throughout. | ||||
* | Combine the functionality of test_support.run_unittest() | Walter Dörwald | 2003-05-01 | 1 | -9/+9 |
| | | | | | | | | | | and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807. | ||||
* | Patch #553171: Add writeback parameter. Also add protocol parameter. | Martin v. Löwis | 2003-04-19 | 1 | -6/+45 |
| | |||||
* | SF patch #667730: More DictMixin | Raymond Hettinger | 2003-03-09 | 1 | -2/+47 |
| | | | | | | | | * Adds missing pop() methods to weakref.py * Expands test suite to broaden coverage of objects with a mapping interface. Contributed by Sebastien Keim. | ||||
* | Whitespace normalization. | Tim Peters | 2002-12-24 | 1 | -1/+1 |
| | |||||
* | Add support for binary pickles to the shelve module. In some situations | Skip Montanaro | 2002-12-08 | 1 | -0/+51 |
this can result in significantly smaller files. All classes as well as the open function now accept an optional binary parameter, which defaults to False for backward compatibility. Added a small test suite, updated the libref documentation (including documenting the exported classes and fixing a few other nits) and added a note about the change to Misc/NEWS. |