summaryrefslogtreecommitdiffstats
path: root/Lib/shutil.py
Commit message (Expand)AuthorAgeFilesLines
* No need to import exceptions, they are builtinsNeal Norwitz2005-09-011-2/+1
* patch [ 1242454 ] shutil.copytree() quits too soon after an error.Georg Brandl2005-08-311-0/+4
* shutil.copytree: move copystat call for the directory after the loopJohannes Gijsbers2005-01-231-1/+1
* Patch #1094015:Johannes Gijsbers2005-01-081-1/+2
* Bug #1048941: shutil.rmtree error handling was always brokenJohannes Gijsbers2004-10-311-27/+33
* Rewrite rmtree using os.walk to fix bug #1025127:Johannes Gijsbers2004-10-071-15/+15
* Catch OSError raised when src or dst argument to os.path.samefile doesn'tJohannes Gijsbers2004-08-141-1/+4
* Raise an exception when src and dst refer to the same file via a hard link or aJohannes Gijsbers2004-08-141-5/+11
* - 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-0/+6
* Fix SF bug #691276, shutil.copytree documentation bugNeal Norwitz2003-02-231-3/+3
* rmtree(): Make implementation agree with documentation (both latex andBarry Warsaw2003-01-241-13/+13
* - squashed bare except in rmtree()Just van Rossum2003-01-051-5/+5
* Added new move() function to __all__.Raymond Hettinger2002-10-301-1/+1
* Patch #448038: Add move(). Report errors from copytree as in shutil.Error.Martin v. Löwis2002-10-071-2/+30
* shutil.copyfile(src,dst) was clobbering the file when the src and dst wereRaymond Hettinger2002-09-081-0/+5
* Replace obsolete stat module constants withWalter Dörwald2002-06-061-3/+3
* Replace boolean test with is None.Raymond Hettinger2002-06-021-1/+1
* bunch more __all__ listsSkip Montanaro2001-02-151-0/+2
* Patch #103342: Make shutil.copytree more useful under Jython.Tim Peters2001-01-211-5/+8
* Whitespace normalization.Tim Peters2001-01-151-2/+2
* apply patch #100868 from Moshe Zadka:Greg Stein2000-07-121-5/+10
* Fred Gansevles <gansevle@cs.utwente.nl>:Fred Drake2000-04-071-1/+1
* The third and final doc-string sweep by Ka-Ping Yee.Guido van Rossum2000-02-041-1/+1
* Typo in comment (on Mac, it's the *resource* fork that's not copied,Guido van Rossum1999-08-181-1/+1
* Add import sys, needed by reference to sys.exc_info() in rmtree().Guido van Rossum1999-02-231-0/+1
* Change the order of the utime() and the chmod() call in copystat().Guido van Rossum1999-01-141-1/+1
* Fix append() calls with more than 1 argument.Guido van Rossum1998-10-071-2/+2
* ST_MODE should be ST_MTIME in utime call in copystat. Thanks to Mike Orr.Guido van Rossum1998-10-021-1/+1
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-41/+41
* Added rmtree(), to recursively remove a directory tree.Guido van Rossum1998-02-061-0/+32
* Transformed comments to doc strings.Guido van Rossum1997-04-291-34/+45
* Reindented at 4 spaces.Guido van Rossum1997-04-291-49/+49
* Add feature to copy(), copy2(): dst may be a directory.Guido van Rossum1997-04-291-22/+27
* Improvements to copyfile(): open the files in binary mode, and closeGuido van Rossum1997-04-291-6/+16
* posix -> osGuido van Rossum1992-03-311-18/+17
* path.cat --> joinGuido van Rossum1991-08-161-2/+2
* Initial revisionGuido van Rossum1990-10-131-0/+70