History log of /external/python/cpython3/Lib/distutils/file_util.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
ed14c86facb62c4fb3fcff73c8ea3860c7dc8d29 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/cpython3/Lib/distutils/file_util.py
6685883c02b29b66813343e6380133cd49df4300 29-Aug-2014 Berker Peksag <berker.peksag@gmail.com> Issue #22182: Use e.args to unpack exceptions correctly in distutils.file_util.move_file.

Patch by Claudiu Popa.
/external/python/cpython3/Lib/distutils/file_util.py
ad28c7f9dad791567afa0624acfb3ba430851965 18-Dec-2012 Andrew Svetlov <andrew.svetlov@gmail.com> Issue #16706: get rid of os.error
/external/python/cpython3/Lib/distutils/file_util.py
7c9719cf74a4c5fc04a07b706d71302bdd8c04c5 28-Jul-2011 Senthil Kumaran <senthil@uthcode.com> Fix closes Issue11439 Remove the SVN keywords from the code as it is no longer applicable in hg. Patch Contributed by Neil Muller.
/external/python/cpython3/Lib/distutils/file_util.py
45ee43be43dce8b81d338ed577a65f21da657b7d 06-Nov-2010 Éric Araujo <merwok@netwok.org> Remove traces of Mac OS 9 support, again (#9508).

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.
/external/python/cpython3/Lib/distutils/file_util.py
bee5cef7dbff40734c347da5b93797e8db9103e8 06-Nov-2010 Éric Araujo <merwok@netwok.org> Always close files in distutils code and tests (#10252).
/external/python/cpython3/Lib/distutils/file_util.py
3679727939a9d25ccfe057e71e8a4b8be73d47ce 22-Jul-2010 Tarek Ziadé <ziade.tarek@gmail.com> reverted distutils its 3.1 state. All new work is now happening in disutils2, and distutils is now feature-frozen.
/external/python/cpython3/Lib/distutils/file_util.py
94f25283c9b6cb43791e23618b9bec0cc961a7cb 05-May-2010 Ronald Oussoren <ronaldoussoren@mac.com> Remove traces of MacOS9 support.

Fix for issue #7908
/external/python/cpython3/Lib/distutils/file_util.py
c2b71889951b0098350757d96d146411991d43df 03-Jul-2009 Tarek Ziadé <ziade.tarek@gmail.com> Merged revisions 73814-73815 via svnmerge from
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
........
/external/python/cpython3/Lib/distutils/file_util.py
35e6fd5de9be36789e4f8f10350a27be559921b9 06-Feb-2009 Tarek Ziadé <ziade.tarek@gmail.com> Merged revisions 69332 via svnmerge from
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
........
/external/python/cpython3/Lib/distutils/file_util.py
70a74eb2c46e18f77cf75106a7ee07767fa90aaf 06-Feb-2009 Tarek Ziadé <ziade.tarek@gmail.com> Merged revisions 69324 via svnmerge from
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.
........
/external/python/cpython3/Lib/distutils/file_util.py
d12dcaea3ed9f476df0831f02631eb586a251e2d 05-Oct-2008 Mark Hammond <mhammond@skippinet.com.au> Fix [issue4038] py3k error in distutils file_copy exception handlers. r=martin.
/external/python/cpython3/Lib/distutils/file_util.py
d11b68ab0834be4be76fca479cd4426eb45dfaec 06-Jan-2008 Georg Brandl <georg@python.org> Fix more exception slicing.
/external/python/cpython3/Lib/distutils/file_util.py
5b7e9d76f39dbf63573519c178835f72e5a5027a 30-Aug-2007 Collin Winter <collinw@gmail.com> General cleanup, raise normalization in Lib/distutils.
/external/python/cpython3/Lib/distutils/file_util.py
b940e113bf90ff71b0ef57414ea2beea9d2a4bc0 10-Jan-2007 Guido van Rossum <guido@python.org> SF patch 1631942 by Collin Winter:
(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
/external/python/cpython3/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/cpython3/Lib/distutils/file_util.py
182b5aca27d376b08a2904bed42b751496f932f3 18-Jul-2004 Tim Peters <tim.peters@gmail.com> Whitespace normalization, via reindent.py.
/external/python/cpython3/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/cpython3/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/cpython3/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/cpython3/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/cpython3/Lib/distutils/file_util.py
b94b849d65af71b4b432a74fdaef8ccd88209cc0 06-Dec-2001 Fred Drake <fdrake@acm.org> Whitespace normalization.
/external/python/cpython3/Lib/distutils/file_util.py
106ffdb6723524df444aa78f591b9cf690c78235 09-Aug-2001 Andrew M. Kuchling <amk@amk.ca> Import the errno module
/external/python/cpython3/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/cpython3/Lib/distutils/file_util.py
2fa699ec601421288564e0688e7ef773810453f4 31-Jan-2001 Jeremy Hylton <jeremy@alum.mit.edu> move "from stat import *" to module level
/external/python/cpython3/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/cpython3/Lib/distutils/file_util.py
449f5568b7920b2d30c4813c443408a8fc42973c 26-Sep-2000 Greg Ward <gward@python.net> Whitespace fix.
/external/python/cpython3/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/cpython3/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/cpython3/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/cpython3/Lib/distutils/file_util.py
3af07e9a78b9b4b5a4776dd8db01928a39c08784 22-Apr-2000 Greg Ward <gward@python.net> Sporadic, untested Python 1.5.1 compatibility changes.
/external/python/cpython3/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/cpython3/Lib/distutils/file_util.py