]> granicus.if.org Git - python/commit
Issue #11074: Make 'tokenize' so it can be reloaded.
authorBrett Cannon <bcannon@gmail.com>
Tue, 22 Feb 2011 03:25:12 +0000 (03:25 +0000)
committerBrett Cannon <bcannon@gmail.com>
Tue, 22 Feb 2011 03:25:12 +0000 (03:25 +0000)
commitf3042782af65fbf68ca7e343357144c676b3fd54
treee1589872758b0742df86d7e7e18cc0e1a9a51062
parenteeb114b028f7aef886e0b1b514d58aac9d26bc8c
Issue #11074: Make 'tokenize' so it can be reloaded.

The module stored away the 'open' object as found in the global namespace
(which fell through to the built-in namespace) since it defined its own 'open'.
Problem is that if you reloaded the module it then grabbed the 'open' defined
in the previous load, leading to code that infinite recursed. Switched to
simply call builtins.open directly.
Lib/tokenize.py
Misc/NEWS