mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Use a better approach to locating IDLE's default configuration,
allowing it to be run from anywhere, including through a symlink to the actual idle.py script.
This commit is contained in:
parent
44679590e0
commit
d6904ea5a0
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ import os
|
|||
import sys
|
||||
import IdleConf
|
||||
|
||||
idle_dir = os.path.split(sys.argv[0])[0]
|
||||
idle_dir = os.path.dirname(IdleConf.__file__)
|
||||
IdleConf.load(idle_dir)
|
||||
|
||||
# defer importing Pyshell until IdleConf is loaded
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue