Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue 5754: tweak shelve doc wording to make it clearer that even when | R. David Murray | 2010-02-11 | 1 | -0/+11 |
| | | | | | | | writeback=True values are written to the backing store when assigned to the shelf. Add test to confirm that this happens. Doc patch and added test by Robert Lehmann. I also fixed the cross references to the sync and close methods. | ||||
* | #7092: silence py3k warnings for deprecated modules | Ezio Melotti | 2010-01-30 | 1 | -0/+2 |
| | |||||
* | Reverting the Revision: 77368. I committed Flox's big patch for tests by | Senthil Kumaran | 2010-01-08 | 1 | -2/+0 |
| | | | | mistake. ( It may come in for sure tough) | ||||
* | Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ↵ | Senthil Kumaran | 2010-01-08 | 1 | -0/+2 |
| | | | | Patch by flox | ||||
* | Issue 1592: Better error reporting for operations on closed shelves. | Raymond Hettinger | 2008-07-25 | 1 | -0/+15 |
| | |||||
* | Use test_support.unlink instead of os.unlink in tearDown(). (Seems to fix ↵ | Steven Bethard | 2008-03-18 | 1 | -1/+1 |
| | | | | an occasional failure in Windows Vista.) | ||||
* | 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. |