From a797fba888ccf550af34c2bacc2a4dca34580610 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 8 Apr 2009 21:40:01 +0000 Subject: [PATCH] don't install scripts which will overwrite 2.x ones #1590 --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 3c228d5d3a..7297440cbf 100644 --- a/setup.py +++ b/setup.py @@ -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 -- 2.50.1