This website requires JavaScript.
Explore
Help
Sign In
Mirror
/
cpython
mirror of
https://github.com/python/cpython
Watch
4
Star
1
Fork
You've already forked cpython
0
Code
Issues
Releases
Wiki
Activity
3a1dde8f29
cpython
/
Tools
/
scripts
/
2to3
6 lines
97 B
Plaintext
Raw
Normal View
History
Unescape
Escape
gh-93939: Create and install scripts in Makefile (GH-94324) Scripts for 2to3, idle, and pydoc are now created and installed by make.
2022-06-28 09:56:06 -03:00
#!/usr/bin/env python3
Revert r88503 as Benjamin's request.
2011-02-23 14:48:52 -04:00
import sys
from lib2to3.main import main
Merged revisions 61846-61847 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r61846 | martin.v.loewis | 2008-03-24 13:57:53 +0100 (Mo, 24 Mär 2008) | 2 lines Install 2to3 script. ........ r61847 | martin.v.loewis | 2008-03-24 14:31:16 +0100 (Mo, 24 Mär 2008) | 2 lines Patch #2240: Implement signal.setitimer and signal.getitimer. ........
2008-03-24 10:39:54 -03:00
Revert r88503 as Benjamin's request.
2011-02-23 14:48:52 -04:00
sys.exit(main("lib2to3.fixes"))