summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/dist.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-04-10 00:18:16 (GMT)
committerGreg Ward <gward@python.net>2000-04-10 00:18:16 (GMT)
commit68a0757e23588a7ea76c562985160484e22a953d (patch)
tree4824accd72858ca428a967d91ab15dd6c1a3ee6a /Lib/distutils/dist.py
parent582a8701cbef58a6512444b94c6e76e717c2fa25 (diff)
downloadcpython-68a0757e23588a7ea76c562985160484e22a953d.zip
cpython-68a0757e23588a7ea76c562985160484e22a953d.tar.gz
cpython-68a0757e23588a7ea76c562985160484e22a953d.tar.bz2
Removed global '--force' option -- just too vague a concept to be applicable
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.
Diffstat (limited to 'Lib/distutils/dist.py')
-rw-r--r--Lib/distutils/dist.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py
index 7246b74..cb18031 100644
--- a/Lib/distutils/dist.py
+++ b/Lib/distutils/dist.py
@@ -52,8 +52,6 @@ class Distribution:
"run quietly (turns verbosity off)"),
('dry-run', 'n',
"don't actually do anything"),
- ('force', 'f',
- "skip dependency checking between files"),
('help', 'h',
"show this help message"),
]
@@ -76,7 +74,6 @@ class Distribution:
# Default values for our command-line options
self.verbose = 1
self.dry_run = 0
- self.force = 0
self.help = 0
self.help_commands = 0