diff options
Diffstat (limited to 'Lib/idlelib/idle.py')
-rw-r--r-- | Lib/idlelib/idle.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/idlelib/idle.py b/Lib/idlelib/idle.py index 485d5a7..141534d 100644 --- a/Lib/idlelib/idle.py +++ b/Lib/idlelib/idle.py @@ -1,7 +1,6 @@ import os.path import sys - # Enable running IDLE with idlelib in a non-standard location. # This was once used to run development versions of IDLE. # Because PEP 434 declared idle.py a public interface, @@ -10,5 +9,5 @@ idlelib_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) if idlelib_dir not in sys.path: sys.path.insert(0, idlelib_dir) -from idlelib.pyshell import main # This is subject to change +from idlelib.PyShell import main # This is subject to change main() |