This website requires JavaScript.
Explore
Help
Sign In
mirrors
/
cpython
Watch
0
Star
0
Fork
0
You've already forked cpython
mirror of
https://github.com/python/cpython.git
synced
2024-11-29 00:56:12 +01:00
Code
Issues
Releases
Activity
0b4915e99e
cpython
/
Tools
/
scripts
/
idle3
6 lines
96 B
Plaintext
Raw
Normal View
History
Unescape
Escape
install idle and pydoc with a 3 suffix #5756
2009-04-25 23:11:45 +02:00
#! /usr/bin/env python3
Put the main script for the new IDLE here.
2003-06-13 22:34:27 +02:00
from idlelib.PyShell import main
[Patch #1005491 ] use __name__ == '__main__' in scripts
2004-08-09 19:27:55 +02:00
if __name__ == '__main__':
main()
Copy Permalink