mirror of
https://github.com/python/cpython.git
synced 2024-11-24 02:15:30 +08:00
d6904ea5a0
allowing it to be run from anywhere, including through a symlink to the actual idle.py script.
13 lines
214 B
Python
Executable File
13 lines
214 B
Python
Executable File
#! /usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
import IdleConf
|
|
|
|
idle_dir = os.path.dirname(IdleConf.__file__)
|
|
IdleConf.load(idle_dir)
|
|
|
|
# defer importing Pyshell until IdleConf is loaded
|
|
import PyShell
|
|
PyShell.main()
|