Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
9cf41d0c
Commit
9cf41d0c
authored
Mar 11, 2010
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
normalize shebang lines to #!/usr/bin/env python
parent
afa595b3
Changes
26
Hide whitespace changes
Inline
Side-by-side
Showing
26 changed files
with
26 additions
and
26 deletions
+26
-26
Demo/cgi/cgi1.py
Demo/cgi/cgi1.py
+1
-1
Demo/cgi/cgi2.py
Demo/cgi/cgi2.py
+1
-1
Demo/cgi/cgi3.py
Demo/cgi/cgi3.py
+1
-1
Demo/turtle/tdemo_I_dontlike_tiltdemo.py
Demo/turtle/tdemo_I_dontlike_tiltdemo.py
+1
-1
Demo/turtle/tdemo_bytedesign.py
Demo/turtle/tdemo_bytedesign.py
+1
-1
Demo/turtle/tdemo_clock.py
Demo/turtle/tdemo_clock.py
+1
-1
Demo/turtle/tdemo_fractalcurves.py
Demo/turtle/tdemo_fractalcurves.py
+1
-1
Demo/turtle/tdemo_lindenmayer_indian.py
Demo/turtle/tdemo_lindenmayer_indian.py
+1
-1
Demo/turtle/tdemo_minimal_hanoi.py
Demo/turtle/tdemo_minimal_hanoi.py
+1
-1
Demo/turtle/tdemo_paint.py
Demo/turtle/tdemo_paint.py
+1
-1
Demo/turtle/tdemo_peace.py
Demo/turtle/tdemo_peace.py
+1
-1
Demo/turtle/tdemo_penrose.py
Demo/turtle/tdemo_penrose.py
+1
-1
Demo/turtle/tdemo_planet_and_moon.py
Demo/turtle/tdemo_planet_and_moon.py
+1
-1
Demo/turtle/tdemo_tree.py
Demo/turtle/tdemo_tree.py
+1
-1
Demo/turtle/tdemo_yinyang.py
Demo/turtle/tdemo_yinyang.py
+1
-1
Demo/turtle/turtleDemo.py
Demo/turtle/turtleDemo.py
+1
-1
Demo/turtle/turtledemo_two_canvases.py
Demo/turtle/turtledemo_two_canvases.py
+1
-1
Doc/includes/email-alternative.py
Doc/includes/email-alternative.py
+1
-1
Lib/test/test_bz2.py
Lib/test/test_bz2.py
+1
-1
Lib/test/test_optparse.py
Lib/test/test_optparse.py
+1
-1
Mac/BuildScript/build-installer.py
Mac/BuildScript/build-installer.py
+1
-1
Mac/Tools/fixapplepython23.py
Mac/Tools/fixapplepython23.py
+1
-1
Mac/scripts/zappycfiles.py
Mac/scripts/zappycfiles.py
+1
-1
Tools/faqwiz/faqw.py
Tools/faqwiz/faqw.py
+1
-1
Tools/pybench/Setup.py
Tools/pybench/Setup.py
+1
-1
Tools/scripts/parseentities.py
Tools/scripts/parseentities.py
+1
-1
No files found.
Demo/cgi/cgi1.py
View file @
9cf41d0c
#!/usr/
local/bin/
python
#!/usr/
bin/env
python
"""CGI test 1 - check server setup."""
...
...
Demo/cgi/cgi2.py
View file @
9cf41d0c
#!/usr/
local/bin/
python
#!/usr/
bin/env
python
"""CGI test 2 - basic use of cgi module."""
...
...
Demo/cgi/cgi3.py
View file @
9cf41d0c
#!/usr/
local/bin/
python
#!/usr/
bin/env
python
"""CGI test 3 (persistent data)."""
...
...
Demo/turtle/tdemo_I_dontlike_tiltdemo.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
""" turtle-example-suite:
tdemo-I_dont_like_tiltdemo.py
...
...
Demo/turtle/tdemo_bytedesign.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
""" turtle-example-suite:
tdemo_bytedesign.py
...
...
Demo/turtle/tdemo_clock.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
# -*- coding: cp1252 -*-
""" turtle-example-suite:
...
...
Demo/turtle/tdemo_fractalcurves.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
""" turtle-example-suite:
tdemo_fractalCurves.py
...
...
Demo/turtle/tdemo_lindenmayer_indian.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
""" turtle-example-suite:
xtx_lindenmayer_indian.py
...
...
Demo/turtle/tdemo_minimal_hanoi.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
""" turtle-example-suite:
tdemo_minimal_hanoi.py
...
...
Demo/turtle/tdemo_paint.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
""" turtle-example-suite:
tdemo_paint.py
...
...
Demo/turtle/tdemo_peace.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
""" turtle-example-suite:
tdemo_peace.py
...
...
Demo/turtle/tdemo_penrose.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
""" xturtle-example-suite:
xtx_kites_and_darts.py
...
...
Demo/turtle/tdemo_planet_and_moon.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
""" turtle-example-suite:
tdemo_planets_and_moon.py
...
...
Demo/turtle/tdemo_tree.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
""" turtle-example-suite:
tdemo_tree.py
...
...
Demo/turtle/tdemo_yinyang.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
""" turtle-example-suite:
tdemo_yinyang.py
...
...
Demo/turtle/turtleDemo.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
import
sys
import
os
...
...
Demo/turtle/turtledemo_two_canvases.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
## DEMONSTRATES USE OF 2 CANVASES, SO CANNOT BE RUN IN DEMOVIEWER!
"""turtle example: Using TurtleScreen and RawTurtle
for drawing on two distinct canvases.
...
...
Doc/includes/email-alternative.py
View file @
9cf41d0c
#!
/usr/bin/
python
#!
/usr/bin/env
python
import
smtplib
...
...
Lib/test/test_bz2.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
from
test
import
test_support
from
test.test_support
import
TESTFN
,
import_module
...
...
Lib/test/test_optparse.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
#
# Test suite for Optik. Supplied by Johannes Gijsbers
...
...
Mac/BuildScript/build-installer.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
"""
This script is used to build the "official unofficial" universal build on
Mac OS X. It requires Mac OS X 10.4, Xcode 2.2 and the 10.4u SDK to do its
...
...
Mac/Tools/fixapplepython23.py
View file @
9cf41d0c
#!/usr/bin/python
#!/usr/bin/
env
python
"""fixapplepython23 - Fix Apple-installed Python 2.3 (on Mac OS X 10.3)
Python 2.3 (and 2.3.X for X<5) have the problem that building an extension
...
...
Mac/scripts/zappycfiles.py
View file @
9cf41d0c
#!/usr/
local/bin/
python
#!/usr/
bin/env
python
"""Recursively zap all .pyc and .pyo files"""
import
os
import
sys
...
...
Tools/faqwiz/faqw.py
View file @
9cf41d0c
#!
/usr/local/bin/
python
#!
/usr/bin/env
python
"""FAQ wizard bootstrap."""
...
...
Tools/pybench/Setup.py
View file @
9cf41d0c
#!python
#!
/usr/bin/env
python
# Setup file for pybench
#
...
...
Tools/scripts/parseentities.py
View file @
9cf41d0c
#!/usr/
local/bin/
python
#!/usr/
bin/env
python
""" Utility for parsing HTML entity definitions available from:
http://www.w3.org/ as e.g.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment