mirror of
https://github.com/python/cpython.git
synced 2025-07-25 12:14:38 +00:00

This follows the previous patch that changed idlelib file names. Class names that matched old module names are not changed. Change idlelib imports in turtledemo.__main__. Exception: config-extensions.def. Previously, extension section names, file names, and class names had to match. Changing section names would create cross-version conflicts in config-extensions.cfg (user customizations). Instead map old names to new file names at point of import in editor.EditorWindow.load_extension. Patch extensively tested with test_idle, idle_test.htest.py, a custom import-all test, running IDLE in a console to catch messages, and testing each menu item. Based on a patch by Al Sweigart.
11 lines
400 B
Python
11 lines
400 B
Python
import os.path
|
|
import sys
|
|
|
|
# If we are working on a development version of IDLE, we need to prepend the
|
|
# parent of this idlelib dir to sys.path. Otherwise, importing idlelib gets
|
|
# the version installed with the Python used to call this module:
|
|
idlelib_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
sys.path.insert(0, idlelib_dir)
|
|
|
|
import idlelib.pyshell
|
|
idlelib.pyshell.main()
|