idle.pyw 209 Bytes
Newer Older
David Scherer's avatar
David Scherer committed
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.split(sys.argv[0])[0]
IdleConf.load(idle_dir)

# defer importing Pyshell until IdleConf is loaded
import PyShell
PyShell.main()