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.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/idlelib/hyperparser.py b/Lib/idlelib/hyperparser.py
index f904a39..450a709 100644
--- a/Lib/idlelib/hyperparser.py
+++ b/Lib/idlelib/hyperparser.py
@@ -4,11 +4,10 @@ HyperParser uses PyParser. PyParser mostly gives information on the
proper indentation of code. HyperParser gives additional information on
the structure of code.
"""
-
-import string
from keyword import iskeyword
-from idlelib import pyparse
+import string
+from idlelib import pyparse
# all ASCII chars that may be in an identifier
_ASCII_ID_CHARS = frozenset(string.ascii_letters + string.digits + "_")