Barry Warsaw
234d9a9eb3
rmtree(): Make implementation agree with documentation (both latex and
...
docstring). Even if ignore_errors was true, an exception would occur
if path didn't exist.
2003-01-24 17:36:15 +00:00
Just van Rossum
66d16baf71
- squashed bare except in rmtree()
...
- improved readability of rmtree; removed silly apply()
2003-01-05 19:44:11 +00:00
Raymond Hettinger
2b9bfb33ff
Added new move() function to __all__.
2002-10-30 05:44:50 +00:00
Martin v. Löwis
e9ce0b0fea
Patch #448038 : Add move(). Report errors from copytree as in shutil.Error.
2002-10-07 13:23:24 +00:00
Raymond Hettinger
57e79459fa
shutil.copyfile(src,dst) was clobbering the file when the src and dst were
...
the same. Added check to verify the two names are not the same. Does not
check the actual files to see if there is a symbolic link.
Closes SF bug 490165 and Tzot's patch 604600.
2002-09-08 20:43:59 +00:00
Walter Dörwald
294bbf3a59
Replace obsolete stat module constants with
...
equivalent attributes in a few more spots.
This closes SF patch http://www.python.org/sf/562373
2002-06-06 09:48:13 +00:00
Raymond Hettinger
f13eb55d59
Replace boolean test with is None.
2002-06-02 00:40:05 +00:00
Skip Montanaro
0de65807e6
bunch more __all__ lists
...
also modified check_all function to suppress all warnings since they aren't
relevant to what this test is doing (allows quiet checking of regsub, for
instance)
2001-02-15 22:15:14 +00:00
Tim Peters
0c94724cc7
Patch #103342 : Make shutil.copytree more useful under Jython.
2001-01-21 20:00:00 +00:00
Tim Peters
495ad3c8cc
Whitespace normalization.
2001-01-15 01:36:40 +00:00
Greg Stein
42bb8b3987
apply patch #100868 from Moshe Zadka:
...
refactor the copying of file data. new: shutil.copyfileobj(fsrc, fdst)
2000-07-12 09:55:30 +00:00
Fred Drake
5fa38862bb
Fred Gansevles <gansevle@cs.utwente.nl>:
...
The copytree function doesn't pass the symlinks parameter in recursicve
calls
2000-04-07 14:34:50 +00:00
Guido van Rossum
e7b146fb3b
The third and final doc-string sweep by Ka-Ping Yee.
...
The attached patches update the standard library so that all modules
have docstrings beginning with one-line summaries.
A new docstring was added to formatter. The docstring for os.py
was updated to mention nt, os2, ce in addition to posix, dos, mac.
2000-02-04 15:28:42 +00:00
Guido van Rossum
959fa01dc3
Typo in comment (on Mac, it's the *resource* fork that's not copied,
...
the data fork *is* copied).
1999-08-18 20:03:17 +00:00
Guido van Rossum
83c03e2d94
Add import sys, needed by reference to sys.exc_info() in rmtree().
...
Discovered by Mitch Chapman.
1999-02-23 23:07:51 +00:00
Guido van Rossum
e1bf7e8c1d
Change the order of the utime() and the chmod() call in copystat().
...
This doesn't make a bit of difference on Unix, but apparently on
Windows NT you need write permission before you can set the utime...
1999-01-14 00:42:00 +00:00
Guido van Rossum
d832f9e425
Fix append() calls with more than 1 argument.
1998-10-07 13:18:17 +00:00
Guido van Rossum
96372a2657
ST_MODE should be ST_MTIME in utime call in copystat. Thanks to Mike Orr.
1998-10-02 03:16:08 +00:00
Guido van Rossum
45e2fbc2e7
Mass check-in after untabifying all files that need it.
1998-03-26 21:13:24 +00:00
Guido van Rossum
d76732918a
Added rmtree(), to recursively remove a directory tree.
...
Code by David Ascher (docstring by me).
1998-02-06 21:38:09 +00:00
Guido van Rossum
9d0a3dfa3d
Transformed comments to doc strings.
...
Added symlinks option to copytree.
1997-04-29 14:45:19 +00:00
Guido van Rossum
a2baf46c89
Reindented at 4 spaces.
1997-04-29 14:06:46 +00:00
Guido van Rossum
5980845bd5
Add feature to copy(), copy2(): dst may be a directory.
...
Remove unneeded check for '.' / '..' from copytree().
Add some comments.
1997-04-29 14:06:05 +00:00
Guido van Rossum
277206b08e
Improvements to copyfile(): open the files in binary mode, and close
...
them in a finally clause.
1997-04-29 13:08:15 +00:00
Guido van Rossum
c96207abb3
posix -> os
1992-03-31 18:55:40 +00:00
Guido van Rossum
784ca6c835
path.cat --> join
1991-08-16 13:28:23 +00:00
Guido van Rossum
c636014c43
Initial revision
1990-10-13 19:23:40 +00:00