summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_uu.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove the test file before writing it in case there is no write permission.Neal Norwitz2008-04-101-0/+2
| | | | | | This might help fix some of the failures on Windows box(es). It doesn't hurt either way and ensure the tests are a little more self contained (ie have less assumptions).
* Fix a bunch of UnboundLocalErrors when the tests fail.Neal Norwitz2008-03-251-0/+3
|
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+0
|
* Try reverting part of r53145 that seems to cause the Windows buildbots to ↵Neal Norwitz2007-01-181-2/+2
| | | | fail in test_uu.UUFileTest.test_encode
* [Bug #776202] Apply Walter Doerwald's patch to use text mode for encoded filesAndrew M. Kuchling2006-12-221-7/+7
|
* Add a test for uu.encode() that passed filenames asWalter Dörwald2005-11-211-0/+8
| | | | in_file and out_file.
* Port test_uu.py to PyUnit. From SF patch #662807.Walter Dörwald2003-05-061-147/+162
|
* Massive changes from SF 589982 (tempfile.py rewrite, by ZackGuido van Rossum2002-08-091-2/+1
| | | | | Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
* 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. :)
* Test that uu.py will not override an existing file if out_file isn'tBarry Warsaw2001-08-171-0/+34
| | | | given and the path is gleaned from the uu header.
* The test opened the binary test data files in text mode! Fixed.Jack Jansen2001-08-031-3/+3
|
* SF patch #440144: Tests and minor bugfix for uu module.Tim Peters2001-07-111-0/+124
New test_uu.py from Nick Mathewson, fiddled to work on Windows too. Somebody should check that it still works on non-Windows boxes, though!