summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/dep_util.py
Commit message (Collapse)AuthorAgeFilesLines
* 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.