summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/cmd.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Removed global '--force' option -- just too vague a concept to be applicableGreg Ward2000-04-101-10/+14
| | | | | | to all commands in the same way. Several Command methods now either expect 'self.force' to be defined, or check if it is defined and assume it's false if not.
* Added (currently) pointless and trivial main body (for future tests).Greg Ward2000-04-091-0/+4
|
* Reorganization: moved the Distribution class from core.py to dist.py, andGreg Ward2000-04-041-0/+390
the Command class from core.py to cmd.py. No other code needs changing though; distutils.core still provides the Command and Distribution classes, although indirectly now.