mirror of
https://github.com/python/cpython.git
synced 2025-07-29 22:24:49 +00:00
Install 2to3 script.
This commit is contained in:
parent
9bdead0aed
commit
cdbc977c03
3 changed files with 8 additions and 0 deletions
|
@ -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.
|
||||
|
||||
|
|
5
Tools/scripts/2to3
Executable file
5
Tools/scripts/2to3
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/usr/bin/env python
|
||||
from lib2to3 import refactor
|
||||
import sys
|
||||
|
||||
sys.exit(refactor.main())
|
1
setup.py
1
setup.py
|
@ -1716,6 +1716,7 @@ def main():
|
|||
|
||||
# Scripts to install
|
||||
scripts = ['Tools/scripts/pydoc', 'Tools/scripts/idle',
|
||||
'Tools/scripts/2to3',
|
||||
'Lib/smtpd.py']
|
||||
)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue