summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/idle.py
blob: f42327c9b39966b8eba3f6af225b7d73ec1d6855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#! /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()