This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: undefined name 'modules' in Tools/freeze/checkextensions_win32.py
Type: crash Stage:
Components: Demos and Tools Versions: Python 3.6, Python 3.4, Python 3.5, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: jayvdb, mhammond, python-dev
Priority: normal Keywords: patch

Created on 2015-10-29 06:00 by jayvdb, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
checkextensions_win32.diff jayvdb, 2015-10-29 06:00 Fix undefined name review
Messages (2)
msg253656 - (view) Author: John Mark Vandenberg (jayvdb) * Date: 2015-10-29 06:00
All versions of Tools/freeze/checkextensions_win32.py have had an error due to accessing 'modules.sourceFiles' instead of 'module.sourceFiles'.

https://hg.python.org/cpython/diff/8e9d5e5103f5/Tools/freeze/checkextensions_win32.py#l1.96

Presumably there is something which makes this block of code rather infrequently used.
msg253715 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-10-30 04:11
New changeset 31fd613a40aa by Benjamin Peterson in branch '2.7':
fix usage of undefined name (#25504)
https://hg.python.org/cpython/rev/31fd613a40aa

New changeset 114fb81a08e3 by Benjamin Peterson in branch '3.4':
fix usage of undefined name (#25504)
https://hg.python.org/cpython/rev/114fb81a08e3

New changeset e6ab376f575e by Benjamin Peterson in branch '3.5':
merge 3.4 (#25504)
https://hg.python.org/cpython/rev/e6ab376f575e

New changeset 2de616269f0e by Benjamin Peterson in branch 'default':
merge 3.5 (#25504)
https://hg.python.org/cpython/rev/2de616269f0e
History
Date User Action Args
2022-04-11 14:58:23adminsetgithub: 69690
2015-10-30 04:11:49benjamin.petersonsetstatus: open -> closed
resolution: fixed
2015-10-30 04:11:38python-devsetnosy: + python-dev
messages: + msg253715
2015-10-29 06:00:38jayvdbcreate