diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-11 23:39:40 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-11 23:39:40 (GMT) |
commit | b5cdf191ec572965371d52b76151506b72b78a15 (patch) | |
tree | c63a285d1cdd4904100100cd745f54a5759cae7d /Python | |
parent | 90f5ba538bf40bcf4fd41049c7bf4296d3ffc9c7 (diff) | |
download | cpython-b5cdf191ec572965371d52b76151506b72b78a15.zip cpython-b5cdf191ec572965371d52b76151506b72b78a15.tar.gz cpython-b5cdf191ec572965371d52b76151506b72b78a15.tar.bz2 |
fix bootstrapping on machines with only 2.x installed
Diffstat (limited to 'Python')
-rwxr-xr-x | Python/makeopcodetargets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/makeopcodetargets.py b/Python/makeopcodetargets.py index 7180e9a..a85ac52 100755 --- a/Python/makeopcodetargets.py +++ b/Python/makeopcodetargets.py @@ -1,4 +1,4 @@ -#! /usr/bin/env python3 +#! /usr/bin/env python """Generate C code for the jump table of the threaded code interpreter (for compilers supporting computed gotos or "labels-as-values", such as gcc). """ |