summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/hyperparser.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/hyperparser.py')
-rw-r--r--Lib/idlelib/hyperparser.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/idlelib/hyperparser.py b/Lib/idlelib/hyperparser.py
index 77cb057..f904a39 100644
--- a/Lib/idlelib/hyperparser.py
+++ b/Lib/idlelib/hyperparser.py
@@ -7,7 +7,7 @@ the structure of code.
import string
from keyword import iskeyword
-from idlelib import PyParse
+from idlelib import pyparse
# all ASCII chars that may be in an identifier
@@ -30,7 +30,7 @@ class HyperParser:
self.editwin = editwin
self.text = text = editwin.text
- parser = PyParse.Parser(editwin.indentwidth, editwin.tabwidth)
+ parser = pyparse.Parser(editwin.indentwidth, editwin.tabwidth)
def index2line(index):
return int(float(index))