File tree Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Expand file tree Collapse file tree 4 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,11 @@ Core and Builtins
76
76
- Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)'
77
77
to avoid compiler warnings.
78
78
79
+ Installation
80
+ ------------
81
+
82
+ - Issue #5756: Install idle and pydoc with a 3 suffix.
83
+
79
84
Library
80
85
-------
81
86
Original file line number Diff line number Diff line change 1
- #! /usr/bin/env python
1
+ #! /usr/bin/env python3
2
2
3
3
from idlelib .PyShell import main
4
4
if __name__ == '__main__' :
Original file line number Diff line number Diff line change 1
- #!/usr/bin/env python
1
+ #!/usr/bin/env python3
2
2
3
3
import pydoc
4
4
if __name__ == '__main__' :
Original file line number Diff line number Diff line change @@ -1652,13 +1652,7 @@ def main():
1652
1652
# called unless there's at least one extension module defined.
1653
1653
ext_modules = [Extension ('_struct' , ['_struct.c' ])],
1654
1654
1655
- # Scripts to install
1656
- # Commented out because we don't want them to override the 2.x
1657
- # ones. See #1590.
1658
- scripts = []
1659
- #scripts = ['Tools/scripts/pydoc', 'Tools/scripts/idle',
1660
- # 'Tools/scripts/2to3',
1661
- # 'Lib/smtpd.py']
1655
+ scripts = ["Tools/scripts/pydoc3" , "Tools/scripts/idle3" ]
1662
1656
)
1663
1657
1664
1658
# --install-platlib
You can’t perform that action at this time.
0 commit comments