summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_xpickle.py
Commit message (Collapse)AuthorAgeFilesLines
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-6/+4
| | | | | | | | | | 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.
* Whitespace normalization.Tim Peters2003-02-191-1/+1
|
* Removed unused cut'n'paste import.Tim Peters2003-02-131-1/+0
|
* We didn't have any tests making pickles with one of {pickle, cPickle},Tim Peters2003-02-131-0/+47
and loading them via the other, except for the special cases of this Guido added to test_datetime.py for datetime module objects. The new test_xpickle.py tries all of pickletester's AbstractPickleTests in both x-module ways.