Changeset 391 for python/trunk/Lib/distutils/command/clean.py
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Lib/distutils/command/clean.py
r2 r391 5 5 # contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18 6 6 7 # This module should be kept compatible with Python 2.1. 8 9 __revision__ = "$Id: clean.py 38532 2005-03-03 08:12:27Z loewis $" 7 __revision__ = "$Id$" 10 8 11 9 import os … … 14 12 from distutils import log 15 13 16 class clean 14 class clean(Command): 17 15 18 16 description = "clean up temporary files from 'build' command"
Note:
See TracChangeset
for help on using the changeset viewer.