summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dircache.py
Commit message (Collapse)AuthorAgeFilesLines
* fix typos, mostly in commentsFred Drake2005-10-281-1/+1
|
* make this test work when run repeatedly.Michael W. Hudson2004-08-031-3/+2
|
* Patch #707167: Pass dircache exceptions to the caller. Fixes #682813.Martin v. Löwis2003-09-201-1/+1
| | | | Not backported because of behaviour change.
* 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. :)
* Change the PyUnit-based tests to use the test_main() approach. ThisFred Drake2001-09-201-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 Peters2001-07-211-9/+15
|
* Whitespace normalization, plus:Tim Peters2001-07-211-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 Drake2001-07-191-0/+62
Modified by Fred Drake. This closes SF patch #440827.