Commit 44b1e7d8 authored by Guido van Rossum's avatar Guido van Rossum

Fix for SF bug #448835.

Fix this to work with the new (still undocumented) tabnanny API.

I'm afraid Stephen will have to add this fix to the IDLE fork code
base as well.
parent 15d86c62
...@@ -69,10 +69,9 @@ class ScriptBinding: ...@@ -69,10 +69,9 @@ class ScriptBinding:
def tabnanny(self, filename): def tabnanny(self, filename):
import tabnanny import tabnanny
import tokenize import tokenize
tabnanny.reset_globals()
f = open(filename, 'r') f = open(filename, 'r')
try: try:
tokenize.tokenize(f.readline, tabnanny.tokeneater) tabnanny.process_tokens(tokenize.generate_tokens(f.readline))
except tokenize.TokenError, msg: except tokenize.TokenError, msg:
self.errorbox("Token error", self.errorbox("Token error",
"Token error:\n%s" % str(msg)) "Token error:\n%s" % str(msg))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment