[Python-checkins] cpython (merge 3.4 -> 3.5): merge 3.4 (#25504)

benjamin.peterson python-checkins at python.org
Fri Oct 30 00:11:39 EDT 2015


https://hg.python.org/cpython/rev/e6ab376f575e
changeset:   98894:e6ab376f575e
branch:      3.5
parent:      98890:70be1f9c9255
parent:      98893:114fb81a08e3
user:        Benjamin Peterson <benjamin at python.org>
date:        Thu Oct 29 21:11:22 2015 -0700
summary:
  merge 3.4 (#25504)

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


diff --git a/Tools/freeze/checkextensions_win32.py b/Tools/freeze/checkextensions_win32.py
--- a/Tools/freeze/checkextensions_win32.py
+++ b/Tools/freeze/checkextensions_win32.py
@@ -118,7 +118,7 @@
 
     for exc in exclude:
         if exc in module.sourceFiles:
-            modules.sourceFiles.remove(exc)
+            module.sourceFiles.remove(exc)
 
     return module
 

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


More information about the Python-checkins mailing list