[issue23594] Wrong variable name in traceback

2015-03-05 Thread Ned Deily
Changes by Ned Deily : -- Removed message: http://bugs.python.org/msg237316 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue23594] Wrong variable name in traceback

2015-03-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 62c3742eb25f by Ned Deily in branch '2.7': Issue #23594: Update OS X 10.5 installer build to use OpenSSL 1.0.2. https://hg.python.org/cpython/rev/62c3742eb25f New changeset b2f3a44dbe1b by Ned Deily in branch '3.4': Issue #23594: Update OS X 10.5 in

[issue23594] Wrong variable name in traceback

2015-03-05 Thread Ned Deily
Changes by Ned Deily : -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Unupdated source file in traceback ___ Python tracker ___ _

[issue23594] Wrong variable name in traceback

2015-03-05 Thread Ezio Melotti
Ezio Melotti added the comment: #8087 -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue23594] Wrong variable name in traceback

2015-03-05 Thread R. David Murray
R. David Murray added the comment: This is a duplicate of an existing issue but I don't have time to find the issue. It's not a trivial problem to fix, though now that the import system is in python it may be possible. -- nosy: +r.david.murray ___

[issue23594] Wrong variable name in traceback

2015-03-05 Thread Jeff Zemla
Jeff Zemla added the comment: In 3), "not" should be "now" -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue23594] Wrong variable name in traceback

2015-03-05 Thread Jeff Zemla
New submission from Jeff Zemla: I've found a rather simple bug in the default CPython implementation on Mac OS X 10.9.5 1) Create a new .py file containing: def a(): print q x=5 2) Open Python and run using execfile() then a(). Receive error as expected: File "test.py", line 2, in a