Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Bug #220993; may also fix bug #479469] Fix flakiness when old | Andrew M. Kuchling | 2002-02-01 | 1 | -0/+7 |
| | | | | | | | | | 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. | ||||
* | Whitespace normalization. | Fred Drake | 2001-12-06 | 1 | -8/+8 |
| | |||||
* | Import the errno module | Andrew M. Kuchling | 2001-08-09 | 1 | -1/+2 |
| | |||||
* | Don't "import *" from stat at all -- just import what's needed, and | Greg Ward | 2001-07-25 | 1 | -1/+1 |
| | | | | do it back in copy_file() (not at module level). | ||||
* | move "from stat import *" to module level | Jeremy Hylton | 2001-01-31 | 1 | -1/+1 |
| | |||||
* | Changed 'copy_file()' so it returns a tuple (dest_name, copied) -- hopefully, | Greg Ward | 2000-09-30 | 1 | -6/+7 |
| | | | | this will please everyone (as if that's possible). | ||||
* | Whitespace fix. | Greg Ward | 2000-09-26 | 1 | -1/+2 |
| | |||||
* | Reformat docstrings. | Greg Ward | 2000-09-23 | 1 | -65/+63 |
| | | | | Standardize use of whitespace on function calls. | ||||
* | Bastian Kleineidam: 'copy_file()' now returns the output filename, rather | Greg Ward | 2000-06-23 | 1 | -6/+5 |
| | | | | than a boolean indicating whether it did the copy. | ||||
* | Tweaked output of 'copy_file()': if copying to a new name, show the whole | Greg Ward | 2000-05-20 | 1 | -3/+6 |
| | | | | destination path, otherwise show just the directory. | ||||
* | Sporadic, untested Python 1.5.1 compatibility changes. | Greg Ward | 2000-04-22 | 1 | -1/+1 |
| | |||||
* | Reorganization: ripped util.py to shreds, creating in the process: | Greg Ward | 2000-04-04 | 1 | -0/+248 |
- 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. |