| 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. :) | ||||
| * | Add "import thread" at the top of the module; this prevents us from | Guido van Rossum | 2001-04-14 | 1 | -0/+1 |
| | | | | | | failing later when Python is compiled without threading but a failing 'threading' module can be imported due to an earlier (caught) attempt. | ||||
| * | Fix stupidity. | Tim Peters | 2001-01-13 | 1 | -1/+1 |
| | | |||||
| * | Guido found a brand new race in tempfile on Linux, due to Linux changing | Tim Peters | 2001-01-13 | 1 | -0/+85 |
| pid across threads (but in that case, it's still the same process, and so still sharing the "template" cache in tempfile.py). Repaired that, and added a new std test. On Linux, someone please run that standalone with more files and/or more threads; e.g., python lib/test/test_threadedtempfile.py -f 1000 -t 10 to run with 10 threads each creating (and deleting) 1000 temp files. | |||||
