diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-04-08 21:40:01 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-04-08 21:40:01 (GMT) |
commit | a797fba888ccf550af34c2bacc2a4dca34580610 (patch) | |
tree | 82922b574aa33e972c284b6ba2856b42055bc948 /setup.py | |
parent | 026c0c38c8cec1d35c91eff8408061850c328b2c (diff) | |
download | cpython-a797fba888ccf550af34c2bacc2a4dca34580610.zip cpython-a797fba888ccf550af34c2bacc2a4dca34580610.tar.gz cpython-a797fba888ccf550af34c2bacc2a4dca34580610.tar.bz2 |
don't install scripts which will overwrite 2.x ones #1590
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -1653,9 +1653,11 @@ def main(): ext_modules=[Extension('_struct', ['_struct.c'])], # Scripts to install - scripts = ['Tools/scripts/pydoc', 'Tools/scripts/idle', - 'Tools/scripts/2to3', - 'Lib/smtpd.py'] + # Commented out because we don't want them to override the 2.x + # ones. See #1590. + #scripts = ['Tools/scripts/pydoc', 'Tools/scripts/idle', + # 'Tools/scripts/2to3', + # 'Lib/smtpd.py'] ) # --install-platlib |