0
0
mirror of https://github.com/python/cpython.git synced 2024-11-25 01:20:47 +01:00
cpython/Tools/idle/idle.py

13 lines
214 B
Python
Raw Normal View History

1998-10-10 20:58:15 +02:00
#! /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
1998-10-10 20:58:15 +02:00
import PyShell
PyShell.main()