mirror of https://github.com/python/cpython
Fix missing or shebangs and executable bits for scripts (#10318)
This commit is contained in:
parent
299172bdba
commit
0fb681ea50
|
@ -1,3 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
"""
|
||||
Some helper functions to analyze the output of sys.getdxp() (which is
|
||||
only available if Python was built with -DDYNAMIC_EXECUTION_PROFILE).
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
""" Command line interface to difflib.py providing diffs in four formats:
|
||||
|
||||
* ndiff: lists every line and highlights interline changes.
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
"""mailerdaemon - classes to parse mailer-daemon messages"""
|
||||
|
||||
import rfc822
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
import re
|
||||
import sys
|
||||
import shutil
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
#!/usr/bin/env python
|
||||
"""Basic regular expression demostration facility (Perl style syntax)."""
|
||||
|
||||
from Tkinter import *
|
||||
|
|
Loading…
Reference in New Issue