History log of /external/python/cpython2/Lib/distutils/file_util.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
78be2f4e01046e17a5c1a32fe6823a776b044ef7 30-Oct-2014 Antoine Pitrou <solipsis@pitrou.net> Issue #8876: distutils now falls back to copying files when hard linking doesn't work.

This allows use with special filesystems such as VirtualBox shared folders.
/external/python/cpython2/Lib/distutils/file_util.py
d1feff70a3c08f91066b99a74ee1ca8f65bdfec1 06-Nov-2010 Éric Araujo <merwok@netwok.org> Merged revisions 86223-86224,86226,86234 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
r86223 | eric.araujo | 2010-11-06 00:51:56 +0100 (sam., 06 nov. 2010) | 2 lines

Always close files in distutils code and tests (#10252).
........
r86224 | eric.araujo | 2010-11-06 00:58:34 +0100 (sam., 06 nov. 2010) | 2 lines

Add missing entry for r86223.
........
r86226 | eric.araujo | 2010-11-06 00:59:32 +0100 (sam., 06 nov. 2010) | 2 lines

Of course, I forgot one file in r86223.
........
r86234 | eric.araujo | 2010-11-06 03:10:32 +0100 (sam., 06 nov. 2010) | 2 lines

Also close file descriptors from os.popen and subprocess.Popen
........
/external/python/cpython2/Lib/distutils/file_util.py
9545a23c7ffb35417d451d24cc3b0339627965a7 05-May-2010 Ronald Oussoren <ronaldoussoren@mac.com> In a number of places code still revers
to "sys.platform == 'mac'" and that is
dead code because it refers to a platform
that is no longer supported (and hasn't been
supported for several releases).

Fixes issue #7908 for the trunk.
/external/python/cpython2/Lib/distutils/file_util.py
9ad7bbc6370e370b3da7c60cc1ca74774d11957c 03-Jul-2009 Tarek Ziadé <ziade.tarek@gmail.com> cleaned distutils.file_util
/external/python/cpython2/Lib/distutils/file_util.py
aaf2e1884152df80dc8c0167ed1c65eb503484e0 06-Feb-2009 Tarek Ziadé <ziade.tarek@gmail.com> using >= so setting verbose to 2 will work as well
/external/python/cpython2/Lib/distutils/file_util.py
d5eb98549234ec10391744a5a92bb17b47a39d2e 06-Feb-2009 Tarek Ziadé <ziade.tarek@gmail.com> Fixed #1276768: verbose option was not used in the code.
/external/python/cpython2/Lib/distutils/file_util.py
9f369e91632a9249074049719e31ccb13d8ae039 25-Jan-2009 Tarek Ziadé <ziade.tarek@gmail.com> Issue #5052: removed backward compatibility information (out of date)
/external/python/cpython2/Lib/distutils/file_util.py
5a6601cfc63a7b4fe2caf05a0116022ab76b64e6 10-Nov-2004 Martin v. Löwis <martin@v.loewis.de> Update compatibility comments to 2.1, corresponding to PEP 291 1.13.
/external/python/cpython2/Lib/distutils/file_util.py
182b5aca27d376b08a2904bed42b751496f932f3 18-Jul-2004 Tim Peters <tim.peters@gmail.com> Whitespace normalization, via reindent.py.
/external/python/cpython2/Lib/distutils/file_util.py
d448f66317130555cfc157683c743b3d004374c4 19-Nov-2002 Andrew M. Kuchling <amk@amk.ca> Add comment to Distutil files about requiring 1.5.2 compatibility, as
suggested by PEP 291.
/external/python/cpython2/Lib/distutils/file_util.py
a6483d2e9a9d9a69e9823217bf6b6334bb0f0066 14-Nov-2002 Andrew M. Kuchling <amk@amk.ca> Remove 'created by' lines; people can use CVS for this, and the information is often out of date
/external/python/cpython2/Lib/distutils/file_util.py
cd8a1148e19116db109f27d26c02e1de536dc76e 04-Jun-2002 Jeremy Hylton <jeremy@alum.mit.edu> Make setup.py less chatty by default.

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.
/external/python/cpython2/Lib/distutils/file_util.py
3b388ec8b3a45ae45c0934ac04627e247762293c 01-Feb-2002 Andrew M. Kuchling <amk@amk.ca> [Bug #220993; may also fix bug #479469] Fix flakiness when old
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.
/external/python/cpython2/Lib/distutils/file_util.py
b94b849d65af71b4b432a74fdaef8ccd88209cc0 06-Dec-2001 Fred Drake <fdrake@acm.org> Whitespace normalization.
/external/python/cpython2/Lib/distutils/file_util.py
106ffdb6723524df444aa78f591b9cf690c78235 09-Aug-2001 Andrew M. Kuchling <amk@amk.ca> Import the errno module
/external/python/cpython2/Lib/distutils/file_util.py
e628a2fa85ed2f94c6049f3ccb8d671052389548 25-Jul-2001 Greg Ward <gward@python.net> Don't "import *" from stat at all -- just import what's needed, and
do it back in copy_file() (not at module level).
/external/python/cpython2/Lib/distutils/file_util.py
2fa699ec601421288564e0688e7ef773810453f4 31-Jan-2001 Jeremy Hylton <jeremy@alum.mit.edu> move "from stat import *" to module level
/external/python/cpython2/Lib/distutils/file_util.py
0d4a85310937f686d70188dabe3aacde8703e47a 30-Sep-2000 Greg Ward <gward@python.net> Changed 'copy_file()' so it returns a tuple (dest_name, copied) -- hopefully,
this will please everyone (as if that's possible).
/external/python/cpython2/Lib/distutils/file_util.py
449f5568b7920b2d30c4813c443408a8fc42973c 26-Sep-2000 Greg Ward <gward@python.net> Whitespace fix.
/external/python/cpython2/Lib/distutils/file_util.py
9e3dc4e9287d99492bc82ba09c552f3676cd1524 23-Sep-2000 Greg Ward <gward@python.net> Reformat docstrings.
Standardize use of whitespace on function calls.
/external/python/cpython2/Lib/distutils/file_util.py
a392dcb2117739ad0dc7f67bd550083ee860226b 23-Jun-2000 Greg Ward <gward@python.net> Bastian Kleineidam: 'copy_file()' now returns the output filename, rather
than a boolean indicating whether it did the copy.
/external/python/cpython2/Lib/distutils/file_util.py
4355093f94299572498d31fa50eec38df721cadb 20-May-2000 Greg Ward <gward@python.net> Tweaked output of 'copy_file()': if copying to a new name, show the whole
destination path, otherwise show just the directory.
/external/python/cpython2/Lib/distutils/file_util.py
3af07e9a78b9b4b5a4776dd8db01928a39c08784 22-Apr-2000 Greg Ward <gward@python.net> Sporadic, untested Python 1.5.1 compatibility changes.
/external/python/cpython2/Lib/distutils/file_util.py
aebf706b4e845d7525d2d8e792f0e23fcfb3e6af 04-Apr-2000 Greg Ward <gward@python.net> Reorganization: ripped util.py to shreds, creating in the process:
- 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.
/external/python/cpython2/Lib/distutils/file_util.py