File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -76,6 +76,11 @@ Core and Builtins
7676- Issue #1113244: Py_XINCREF, Py_DECREF, Py_XDECREF: Add `do { ... } while (0)'
7777 to avoid compiler warnings.
7878
79+ Installation
80+ ------------
81+
82+ - Issue #5756: Install idle and pydoc with a 3 suffix.
83+
7984Library
8085-------
8186
Original file line number Diff line number Diff line change 1- #! /usr/bin/env python
1+ #! /usr/bin/env python3
22
33from idlelib .PyShell import main
44if __name__ == '__main__' :
Original file line number Diff line number Diff line change 1- #!/usr/bin/env python
1+ #!/usr/bin/env python3
22
33import pydoc
44if __name__ == '__main__' :
Original file line number Diff line number Diff line change @@ -1652,13 +1652,7 @@ def main():
16521652 # called unless there's at least one extension module defined.
16531653 ext_modules = [Extension ('_struct' , ['_struct.c' ])],
16541654
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" ]
16621656 )
16631657
16641658# --install-platlib
You can’t perform that action at this time.
0 commit comments