aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/idlelib/autoexpand.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/autoexpand.py')
-rw-r--r--Lib/idlelib/autoexpand.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/idlelib/autoexpand.py b/Lib/idlelib/autoexpand.py
index 719060765b0..6b46bee69c9 100644
--- a/Lib/idlelib/autoexpand.py
+++ b/Lib/idlelib/autoexpand.py
@@ -12,8 +12,8 @@ its state.
This is an extension file and there is only one instance of AutoExpand.
'''
-import string
import re
+import string
###$ event <<expand-word>>
###$ win <Alt-slash>
@@ -100,7 +100,6 @@ class AutoExpand:
i = i-1
return line[i:]
-
if __name__ == '__main__':
import unittest
unittest.main('idlelib.idle_test.test_autoexpand', verbosity=2)