mirror of https://github.com/python/cpython
13 lines
240 B
Plaintext
13 lines
240 B
Plaintext
|
#! /usr/bin/env python
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
from idlelib import IdleConf
|
||
|
|
||
|
idle_dir = os.path.dirname(IdleConf.__file__)
|
||
|
IdleConf.load(idle_dir)
|
||
|
|
||
|
# defer importing Pyshell until IdleConf is loaded
|
||
|
from idlelib import PyShell
|
||
|
PyShell.main()
|