[issue33527] Invalid child function scope

2018-06-04 Thread R. David Murray
Change by R. David Murray : -- resolution: -> not a bug stage: test needed -> resolved status: open -> closed ___ Python tracker ___

[issue33527] Invalid child function scope

2018-06-04 Thread Ronald Oussoren
Ronald Oussoren added the comment: >From the zip file, the "bug" is: # def parent_function2( argument1 ): def child_function(): print( argument1 ) if False: argument1 = None # Same function but with fake assignment

[issue33527] Invalid child function scope

2018-05-18 Thread Terry J. Reedy
Change by Terry J. Reedy : -- stage: -> test needed versions: -Python 3.4, Python 3.5 ___ Python tracker ___

[issue33527] Invalid child function scope

2018-05-15 Thread R. David Murray
R. David Murray added the comment: Please post an example, and not a zip file. Given your description (which indeed is not enough to understand what you think the problem is by itself), I think you should be able to post a few lines of python code into the issue in

[issue33527] Invalid child function scope

2018-05-15 Thread gasokiw
New submission from gasokiw : When you try to reassign variable with same name as one of parameters/arguments of parent function to local scope in child function, even if it doesn't actually get ran, the argument/parameter is not passed to child function anymore. In