| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
doesn't work.
This allows use with special filesystems such as VirtualBox shared folders.
|
|
|
|
|
|
| |
distutils.file_util.move_file.
Patch by Claudiu Popa.
|
| |
|
|
|
|
| |
longer applicable in hg. Patch Contributed by Neil Muller.
|
|
|
|
|
|
| |
This was done in r80805 (#7908) and erroneously brought back by the
distutils revert. This commit removes more code than the original,
which was uncomplete. There is no NEWS entry, like in r80805.
|
| |
|
|
|
|
| |
disutils2, and distutils is now feature-frozen.
|
|
|
|
| |
Fix for issue #7908
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73814 | tarek.ziade | 2009-07-03 21:01:12 +0200 (Fri, 03 Jul 2009) | 1 line
basic tests to raise distutils.file_util coverage
........
r73815 | tarek.ziade | 2009-07-03 21:14:49 +0200 (Fri, 03 Jul 2009) | 1 line
cleaned distutils.file_util
........
|
|
|
|
|
|
|
|
|
|
| |
svn+ssh://pythondev@svn.python.org/python/trunk
........
r69332 | tarek.ziade | 2009-02-06 01:49:45 +0100 (Fri, 06 Feb 2009) | 1 line
using >= so setting verbose to 2 will work as well
........
|
|
|
|
|
|
|
|
|
|
| |
svn+ssh://pythondev@svn.python.org/python/trunk
........
r69324 | tarek.ziade | 2009-02-06 01:31:59 +0100 (Fri, 06 Feb 2009) | 1 line
Fixed #1276768: verbose option was not used in the code.
........
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
(a) "except E, V" -> "except E as V"
(b) V is now limited to a simple name (local variable)
(c) V is now deleted at the end of the except block
|
| |
|
| |
|
|
|
|
| |
suggested by PEP 291.
|
|
|
|
| |
is often out of date
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This is a conservative version of SF patch 504889. It uses the log
module instead of calling print in various places, and it ignores the
verbose argument passed to many functions and set as an attribute on
some objects. Instead, it uses the verbosity set on the logger via
the command line.
The log module is now preferred over announce() and warn() methods
that exist only for backwards compatibility.
XXX This checkin changes a lot of modules that have no test suite and
aren't exercised by the Python build process. It will need
substantial testing.
|
|
|
|
|
|
|
|
|
| |
installations are present, by always unlinking the destination file
before copying to it. Without the unlink(), the copied file remains
owned by its previous UID, causing the subsequent chmod() to fail.
Bugfix candidate, though it may cause changes on platforms where
file ownership behaves differently.
|
| |
|
| |
|
|
|
|
| |
do it back in copy_file() (not at module level).
|
| |
|
|
|
|
| |
this will please everyone (as if that's possible).
|
| |
|
|
|
|
| |
Standardize use of whitespace on function calls.
|
|
|
|
| |
than a boolean indicating whether it did the copy.
|
|
|
|
| |
destination path, otherwise show just the directory.
|
| |
|
|
- file_util.py: operations on single files
- dir_util.py: operations on whole directories or directory trees
- dep_util.py: simple timestamp-based dependency analysis
- archive_util.py: creation of archive (tar, zip, ...) files
The functions left in util.py are miscellany that don't fit in any of the
new files.
|