Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Combine the functionality of test_support.run_unittest() | Walter Dörwald | 2003-05-01 | 1 | -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 Peters | 2003-02-19 | 1 | -1/+1 |
| | |||||
* | Removed unused cut'n'paste import. | Tim Peters | 2003-02-13 | 1 | -1/+0 |
| | |||||
* | We didn't have any tests making pickles with one of {pickle, cPickle}, | Tim Peters | 2003-02-13 | 1 | -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. |