[Python-checkins] cpython (3.4): Make Argument Clinic's '--make' option work on Windows.

zach.ware python-checkins at python.org
Tue Apr 14 01:35:05 CEST 2015


https://hg.python.org/cpython/rev/45a85d581873
changeset:   95621:45a85d581873
branch:      3.4
parent:      95617:7ac1c2307a70
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Mon Apr 13 18:33:41 2015 -0500
summary:
  Make Argument Clinic's '--make' option work on Windows.

files:
  Tools/clinic/clinic.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Tools/clinic/clinic.py b/Tools/clinic/clinic.py
--- a/Tools/clinic/clinic.py
+++ b/Tools/clinic/clinic.py
@@ -4164,7 +4164,7 @@
             cmdline.print_usage()
             sys.exit(-1)
         for root, dirs, files in os.walk('.'):
-            for rcs_dir in ('.svn', '.git', '.hg', 'build'):
+            for rcs_dir in ('.svn', '.git', '.hg', 'build', 'externals'):
                 if rcs_dir in dirs:
                     dirs.remove(rcs_dir)
             for filename in files:

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list