summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_shutil.py
Commit message (Collapse)AuthorAgeFilesLines
* Backport:Guido van Rossum2004-07-141-0/+1
| | | | | | | | | - Bug #981530: Fix UnboundLocalError in shutil.rmtree(). This affects the documented behavior: the function passed to the onerror() handler can now also be os.listdir. [I could've sworn I checked this in, but apparently I didn't, or it got lost???]
* Raise an exception when trying to use shutil.move() to move a directory intoBrett Cannon2004-06-191-2/+13
| | | | | | itself. Closes bug #919012.
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-8/+2
| | | | | | | | | | and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
* A very minimal start to a test of the shutil module.Barry Warsaw2003-01-241-0/+28