diff options
author | Christian Heimes <christian@python.org> | 2022-06-28 12:56:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-28 12:56:06 (GMT) |
commit | 44fa03d748eb2b9a13a77c6143b18968521a1980 (patch) | |
tree | e7b970066438111cdc9dee290d1262e5deff20ad /Tools | |
parent | 600c65c094b0b48704d8ec2416930648052ba715 (diff) | |
download | cpython-44fa03d748eb2b9a13a77c6143b18968521a1980.zip cpython-44fa03d748eb2b9a13a77c6143b18968521a1980.tar.gz cpython-44fa03d748eb2b9a13a77c6143b18968521a1980.tar.bz2 |
gh-93939: Create and install scripts in Makefile (GH-94324)
Scripts for 2to3, idle, and pydoc are now created and installed by make.
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/2to3 | 2 | ||||
-rwxr-xr-x | Tools/scripts/idle3 | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/2to3 b/Tools/scripts/2to3 index fbd4aa6..f27d18e 100755 --- a/Tools/scripts/2to3 +++ b/Tools/scripts/2to3 @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import sys from lib2to3.main import main diff --git a/Tools/scripts/idle3 b/Tools/scripts/idle3 index d7332bc..2b4f1b5 100755 --- a/Tools/scripts/idle3 +++ b/Tools/scripts/idle3 @@ -1,4 +1,4 @@ -#! /usr/bin/env python3 +#!/usr/bin/env python3 from idlelib.pyshell import main if __name__ == '__main__': |