mirror of https://github.com/python/cpython
Install 2to3 script.
This commit is contained in:
parent
9bdead0aed
commit
cdbc977c03
|
@ -160,6 +160,8 @@ Tests
|
|||
Build
|
||||
-----
|
||||
|
||||
- A new script 2to3 is now installed, to run the 2.x to 3.x converter.
|
||||
|
||||
- Python/memmove.c and Python/strerror.c have been removed; both functions are
|
||||
in the C89 standard library.
|
||||
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env python
|
||||
from lib2to3 import refactor
|
||||
import sys
|
||||
|
||||
sys.exit(refactor.main())
|
Loading…
Reference in New Issue