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

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