Remove the shebang of inner Tools.

This commit is contained in:
Hai Shi 2020-11-30 12:25:57 +08:00
parent 44ca05afc8
commit 28bb352a4a
7 changed files with 3 additions and 11 deletions

View File

@ -1,4 +1,3 @@
#!/usr/bin/env python
"""
This script is used to build "official" universal installers on macOS.
@ -1615,7 +1614,7 @@ def buildDMG():
if os.path.exists(outdir):
shutil.rmtree(outdir)
# We used to use the deployment target as the last characters of the
# We used to use the deployment target as the last characters of the
# installer file name. With the introduction of weaklinked installer
# variants, we may have two variants with the same file name, i.e.
# both ending in '10.9'. To avoid this, we now use the major/minor

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
# Usage: ./python Modules/_sha3/cleanup.py
# Copyright (C) 2012 Christian Heimes (christian@python.org)
# Licensed to PSF under a Contributor Agreement.
#

View File

@ -1,5 +1,4 @@
#!/usr/bin/python
# Usage: typeslots.py < Include/typeslots.h typeslots.inc
# Usage: ./python typeslots.py < Include/typeslots.h typeslots.inc
import sys, re

View File

@ -1,4 +1,3 @@
#! /usr/bin/env python
"""Generate C code from an ASDL description."""
import os

View File

@ -1,4 +1,3 @@
#! /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).
"""

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python3
#
# Argument Clinic
# Copyright 2012-2013 by Larry Hastings.
# Licensed to the PSF under a contributor agreement.

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python3.8
"""pegen -- PEG Generator.
Search the web for PEG Parsers for reference.