Skip to content

Commit b488d60

Browse files
committed
Merge pull request kivy#3665 from kivy/shebang
remove python shebangs
2 parents 333c218 + cd27022 commit b488d60

File tree

12 files changed

+0
-18
lines changed

12 files changed

+0
-18
lines changed

doc/gallery.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
''' Create rst documentaiton of the examples directory.
32
43
This uses screenshots in the screenshots_dir

examples/canvas/bezier.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
'''
32
Bezier Example
43
==============
@@ -103,4 +102,3 @@ def build(self):
103102

104103
if __name__ == '__main__':
105104
Main().run()
106-

examples/demo/kivycatalog/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/kivy
21
'''
32
Kivy Catalog
43
============

examples/demo/pictures/main.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/kivy
21
'''
32
Basic Picture Viewer
43
====================
@@ -74,4 +73,3 @@ def on_pause(self):
7473

7574
if __name__ == '__main__':
7675
PicturesApp().run()
77-

examples/demo/shadereditor/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/kivy
21
'''
32
Live Shader Editor
43
==================

examples/demo/showcase/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/kivy
21
'''
32
Showcase of Kivy Features
43
=========================

examples/demo/touchtracer/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/kivy
21
'''
32
Touch Tracer Line Drawing Demonstration
43
=======================================

examples/gestures/gesture_board.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/env python
2-
31
from kivy.app import App
42

53
from kivy.uix.floatlayout import FloatLayout
@@ -96,4 +94,3 @@ def build(self):
9694

9795
if __name__ == '__main__':
9896
DemoGesture().run()
99-

examples/kv/kvrun.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/env python
2-
31
from kivy.app import App
42
from kivy.clock import Clock
53
from kivy.lang import Builder

kivy/lib/osc/OSC.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/python
2-
#
31
# Open SoundControl for Python
42
# Copyright (C) 2002 Daniel Holth, Clinton McChesney
53
#

kivy/tools/generate-icons.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
'''
32
Icon generator
43
==============

kivy/tools/pep8checker/pep8.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#!/usr/bin/env python
21
# pep8.py - Check Python source code formatting, according to PEP 8
32
# Copyright (C) 2006 Johann C. Rocholl <[email protected]>
43
#

0 commit comments

Comments
 (0)