mirror of
https://github.com/python/cpython.git
synced 2025-12-09 18:48:05 +00:00
don't install scripts which will overwrite 2.x ones #1590
This commit is contained in:
parent
026c0c38c8
commit
a797fba888
1 changed files with 5 additions and 3 deletions
8
setup.py
8
setup.py
|
|
@ -1653,9 +1653,11 @@ def main():
|
||||||
ext_modules=[Extension('_struct', ['_struct.c'])],
|
ext_modules=[Extension('_struct', ['_struct.c'])],
|
||||||
|
|
||||||
# Scripts to install
|
# Scripts to install
|
||||||
scripts = ['Tools/scripts/pydoc', 'Tools/scripts/idle',
|
# Commented out because we don't want them to override the 2.x
|
||||||
'Tools/scripts/2to3',
|
# ones. See #1590.
|
||||||
'Lib/smtpd.py']
|
#scripts = ['Tools/scripts/pydoc', 'Tools/scripts/idle',
|
||||||
|
# 'Tools/scripts/2to3',
|
||||||
|
# 'Lib/smtpd.py']
|
||||||
)
|
)
|
||||||
|
|
||||||
# --install-platlib
|
# --install-platlib
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue