[Python-checkins] r71400 - python/branches/py3k/setup.py

benjamin.peterson python-checkins at python.org
Wed Apr 8 23:40:02 CEST 2009


Author: benjamin.peterson
Date: Wed Apr  8 23:40:01 2009
New Revision: 71400

Log:
don't install scripts which will overwrite 2.x ones #1590

Modified:
   python/branches/py3k/setup.py

Modified: python/branches/py3k/setup.py
==============================================================================
--- python/branches/py3k/setup.py	(original)
+++ python/branches/py3k/setup.py	Wed Apr  8 23:40:01 2009
@@ -1653,9 +1653,11 @@
           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


More information about the Python-checkins mailing list