test_whitespace_eater_unicode(): Make this test Python 2.1 compatible.
[python/dscho.git] / Lib / idlelib / idle
blobc8a8feaf6ce82a9979de71b886ecc0afe95e37df
1 #!/usr/bin/python
3 try:
4 import idlelib.PyShell
5 except ImportError:
6 # IDLE is not installed, but maybe PyShell is on sys.path:
7 import PyShell
8 PyShell.main()
9 else:
10 idlelib.PyShell.main()