Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove unused imports in test modules. | Georg Brandl | 2010-02-07 | 1 | -1/+1 |
| | |||||
* | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -2/+2 |
| | |||||
* | Deprecate the dircache module for 3.0. | Brett Cannon | 2008-05-10 | 1 | -3/+7 |
| | |||||
* | fix typos, mostly in comments | Fred Drake | 2005-10-28 | 1 | -1/+1 |
| | |||||
* | make this test work when run repeatedly. | Michael W. Hudson | 2004-08-03 | 1 | -3/+2 |
| | |||||
* | Patch #707167: Pass dircache exceptions to the caller. Fixes #682813. | Martin v. Löwis | 2003-09-20 | 1 | -1/+1 |
| | | | | Not backported because of behaviour change. | ||||
* | 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. :) | ||||
* | Change the PyUnit-based tests to use the test_main() approach. This | Fred Drake | 2001-09-20 | 1 | -1/+7 |
| | | | | | allows using the tests with unittest.py as a script. The tests will still run when run as a script themselves. | ||||
* | On WIndows, skip the part of test_dircache that can't work on Windows. | Tim Peters | 2001-07-21 | 1 | -9/+15 |
| | |||||
* | Whitespace normalization, plus: | Tim Peters | 2001-07-21 | 1 | -4/+4 |
| | | | | | | + test_quopri.py relied on significant trailing spaces. Fixed. + test_dircache.py (still) doesn't work on Windows (directory mtime on Windows doesn't work like it does on Unix). | ||||
* | Regression test for the dircache module, contributed by Nick Mathewson. | Fred Drake | 2001-07-19 | 1 | -0/+62 |
Modified by Fred Drake. This closes SF patch #440827. |