summaryrefslogtreecommitdiff
path: root/Lib/test/test_shutil.py
Commit message (Expand)AuthorAgeFilesLines
* Backport fix for issue #10684 from 3.xRonald Oussoren2011-05-061-0/+18
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-4/+4
* Merged revisions 86235 via svnmerge fromÉric Araujo2010-11-171-0/+1
* Merged revisions 85503 via svnmerge fromAntoine Pitrou2010-10-141-4/+8
* Replace deprecated fail* methods with the equivalent assert* ones.Ezio Melotti2010-06-051-11/+11
* Fixed #4265: shutil.copyfile() was leaking file descriptors when disk fillsTarek Ziadé2010-05-051-1/+106
* removed ztar support in shutil.make_archiveTarek Ziadé2010-04-201-30/+0
* Cleanup some test cases using check_warnings and check_py3k_warnings.Florent Xicluna2010-03-171-12/+8
* added make_archive (and secondary APIs) to shutilTarek Ziadé2010-02-231-1/+316
* Make test_shutil clean up after itselfAntoine Pitrou2009-11-041-53/+57
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-12/+12
* Issue #3002: `shutil.copyfile()` and `shutil.copytree()` now raise anAntoine Pitrou2009-05-011-0/+33
* fix test_shutil on ZFS #5676Benjamin Peterson2009-04-291-2/+16
* make destinsrc privateBenjamin Peterson2009-02-071-4/+4
* Issue #2047: shutil.move() could believe that its destination path wasAntoine Pitrou2009-01-291-0/+22
* #2663: support an *ignore* argument to shutil.copytree(). Patch by Tarek Ziade.Georg Brandl2008-07-051-0/+76
* Issue 1577: shutil.move() where destination is a directory was doing aSean Reifscheider2008-03-181-12/+115
* #1669: don't allow shutil.rmtree() to be called on a symlink.Georg Brandl2008-01-201-0/+14
* Another fix for test_shutil. Martin pointed out that it breaks some build botsChristian Heimes2007-11-201-1/+3
* Fixed bug #1470Christian Heimes2007-11-201-5/+2
* test_copytree_simple(): This was leaving behind two new tempTim Peters2006-08-101-16/+36
* Whitespace normalization.Tim Peters2006-07-311-3/+3
* Don't copy directory stat times in shutil.copytree on WindowsMartin v. Löwis2006-07-301-0/+27
* Implement os.{chdir,rename,rmdir,remove} using Win32 directly.Martin v. Löwis2006-05-041-2/+2
* Use os.geteuid() for checking whether we are root, as suggested byJohannes Gijsbers2004-12-121-1/+1
* SF bug #1076467: don't run test_on_error as root, as the permissionJohannes Gijsbers2004-12-061-2/+6
* Bug #1071513: don't test on Cygwin, as chmod doesn't work reliably thereJohannes Gijsbers2004-11-231-1/+5
* test_on_error(): Rewrite so it works on WinXP too. Unsure about 95/98/ME.Tim Peters2004-11-011-7/+13
* Bug #1048941: shutil.rmtree error handling was always brokenJohannes Gijsbers2004-10-311-3/+28
* Document not-completely-obvious behavior in a test.Johannes Gijsbers2004-09-111-0/+7
* Unwrap too-smart loop: we can't use `src` for both hard and symbolic links.Johannes Gijsbers2004-08-141-8/+16
* Raise an exception when src and dst refer to the same file via a hard link or aJohannes Gijsbers2004-08-141-0/+21
* - Bug #981530: Fix UnboundLocalError in shutil.rmtree(). This affectsGuido van Rossum2004-07-141-0/+1
* shutil.move() will raise an exception when trying to move a directory intoBrett Cannon2004-06-191-2/+14
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-8/+2
* A very minimal start to a test of the shutil module.Barry Warsaw2003-01-241-0/+28