summaryrefslogtreecommitdiff
path: root/Lib/distutils/dep_util.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix incorrect mtime comparison in distutils (#11933).Éric Araujo2011-08-021-3/+4
| | | | | | | | | | | | | | This is a regression introduced in 9211a5d7d0b4, when uses of ST_MTIME constants were changed to uses of st_mtime attributes. As diagnosed in the bug report, this change is not merely stylistic: st_mtime is a float but ST_MTIME’s resolution is rounded to the seconds, so there was a mismatch between the values seen by file_util and dep_util which caused an sdist to be unnecessarily created a second time on an ext4 filesystem. This patch has been tested by John S. Gruber, who reported the bug. As this is a simple code revert, I think it’s okay to commit without a unit test.
* added test coverage for distutils.dep_util, and cleaned up the moduleTarek Ziadé2009-12-101-37/+31
|
* Issue #5052: removed backward compatibility information (out of date)Tarek Ziadé2009-01-251-2/+0
|
* be explicit about the actual location of the missing fileSkip Montanaro2007-09-081-1/+2
|
* Update compatibility comments to 2.1, corresponding to PEP 291 1.13.Martin v. Löwis2004-11-101-1/+1
|
* Add comment to Distutil files about requiring 1.5.2 compatibility, asAndrew M. Kuchling2002-11-191-0/+2
| | | | suggested by PEP 291.
* Remove 'created by' lines; people can use CVS for this, and the information ↵Andrew M. Kuchling2002-11-141-2/+0
| | | | is often out of date
* The comment said:Jeremy Hylton2002-06-041-20/+0
| | | | | | | | # XXX this isn't used anywhere, and worse, it has the same name as a method # in Command with subtly different semantics. (This one just has one # source -> one dest; that one has many sources -> one dest.) Nuke it? Yes. Nuke it.
* Whitespace normalization.Fred Drake2001-12-061-4/+4
|
* Reformat docstrings.Greg Ward2000-09-261-36/+35
| | | | Standardize whitespace in function calls.
* Reorganization: ripped util.py to shreds, creating in the process:Greg Ward2000-04-041-0/+116
- 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.