Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -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. :) | ||||
* | Pure Python strptime implementation by Brett Cannon. See SF patch 474274. | Guido van Rossum | 2002-07-19 | 1 | -0/+12 |
| | | | | Also adds tests. | ||||
* | test_mktime(): Removed. This wasn't really testing anything useful | Barry Warsaw | 2002-04-16 | 1 | -6/+0 |
| | | | | | | (or platform independent). Closes SF bug #460357. Bug fix candidate. | ||||
* | Change the PyUnit-based tests to use the test_main() approach. This | Fred Drake | 2001-09-20 | 1 | -1/+6 |
| | | | | | allows using the tests with unittest.py as a script. The tests will still run when run as a script themselves. | ||||
* | Convert time module tests to PyUnit. | Fred Drake | 2001-05-22 | 1 | -37/+49 |
| | |||||
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -4/+4 |
| | | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. | ||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -6/+6 |
| | |||||
* | Use long() instead of int() to compare mktime(localtime(t) with t... | Guido van Rossum | 1997-12-08 | 1 | -1/+1 |
| | |||||
* | Tweaks to cope with strftime returning 0 without error for %Z | Guido van Rossum | 1997-08-18 | 1 | -2/+5 |
| | |||||
* | Removed nonstandard strftime formats (strftime is tested more | Guido van Rossum | 1997-02-20 | 1 | -2/+2 |
| | | | | extensively in test_strftime.py anyway). | ||||
* | test of time module. not terribly fancy, but it does touch every | Barry Warsaw | 1996-12-06 | 1 | -0/+36 |
function and variable in the module, verifies a few return values and even tests a couple of known error conditions. |