summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_anydbm.py
Commit message (Collapse)AuthorAgeFilesLines
* applies the better dbm and shelve related unittests. bug 1007 from ↵Gregory P. Smith2007-08-241-5/+41
| | | | larryhastings
* Fix test case by converting dbm keys to bytes.Martin v. Löwis2007-08-071-12/+12
|
* Move shelve over to BytesIO as pickle.(Pickler | Unpickler) expect binaryBrett Cannon2007-07-261-8/+8
| | | | | | files, not text files. test_shelve still fails thanks to bsddb not having been fixed.
* Make gdbm and dumbdbm use byte strings. Updated their tests.Guido van Rossum2007-05-231-8/+8
|
* Fix another unittest that broke due to dict views (more precisely, dueGuido van Rossum2007-03-081-1/+1
| | | | to the cowboy way they are currently hacked in).
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-4/+2
| | | | | | | | | | and .keys(), .items(), .values() return dict views. The dict views aren't fully functional yet; in particular, they can't be compared to sets yet. but they are useful as "iterator wells". There are still 27 failing unit tests; I expect that many of these have fairly trivial fixes, but there are so many, I could use help.
* Massive changes from SF 589982 (tempfile.py rewrite, by ZackGuido van Rossum2002-08-091-2/+1
| | | | | Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
| | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
* initial test_anydbm module - based on test_dumbdbm.pySkip Montanaro2002-03-181-0/+96