summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/idle.pyw
blob: 131e8d3694a5744d8295b30f932588b6352f075d (plain)
1
2
3
4
5
6
7
8
9
#! /usr/bin/env python

try:
    import idlelib.PyShell
    idlelib.PyShell.main()
except:
    # IDLE is not installed, but maybe PyShell is on sys.path:
    import PyShell
    PyShell.main()