mirror of
https://github.com/python/cpython.git
synced 2024-11-28 08:20:55 +01:00
e81f28b630
idle.py: Load the config files before anything else happens XXX Need to define standard way to get files relative to the IDLE install dir PyShell.py: ColorDelegator.py: Get color defns out of IdleConf instead of IdlePrefs EditorWindow.py: Replace hard-coded font & window size with config options Get extension names via IdleConf.getextensions extend.py: Obsolete. Extensions defined in config file. ParenMatch.py: Use config file for extension options. Revise comment about parser requirements. Simplify logic on find returning None.
13 lines
209 B
Python
Executable File
13 lines
209 B
Python
Executable File
#! /usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
import IdleConf
|
|
|
|
idle_dir = os.path.split(sys.argv[0])[0]
|
|
IdleConf.load(idle_dir)
|
|
|
|
# defer importing Pyshell until IdleConf is loaded
|
|
import PyShell
|
|
PyShell.main()
|