mirror of
https://github.com/python/cpython.git
synced 2024-11-24 18:34:43 +08:00
13 lines
209 B
Python
13 lines
209 B
Python
#! /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()
|