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. :) | ||||
* | Patch #488073: AtheOS port. | Martin v. Löwis | 2002-06-11 | 1 | -2/+3 |
| | |||||
* | Checking in patch #103478 -- makes popen2 and fork1 tested on BeOS. | Moshe Zadka | 2001-01-30 | 1 | -0/+7 |
| | | | | Tested for not breaking builds on Linux. | ||||
* | The "more" cmd varies across Windows flavors, sometimes adding stray | Tim Peters | 2000-09-01 | 1 | -7/+16 |
| | | | | | | | | newlines at the start or end. Fiddle test_popen2 and popen2._test() to tolerate this. Also change all "assert"s in these tests to raise explicit exceptions, so that python -O doesn't render them useless. Also, in case of error, make the msg display the reprs of what we wrote and what we read, so we can tell exactly why it's failing. | ||||
* | Added os.popen2() and os.popen3() for non-Windows platforms. | Fred Drake | 2000-08-28 | 1 | -1/+34 |
| | |||||
* | -- changed test to work on platforms which have os.popen | Fredrik Lundh | 2000-07-27 | 1 | -2/+8 |
| | | | | but no os.fork | ||||
* | Test for popen2 module, by Chris Tismer. | Guido van Rossum | 1999-03-11 | 1 | -0/+17 |