summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorJames Henstridge <jamesh@src.gnome.org>2003-08-17 10:50:35 +0000
committerJames Henstridge <jamesh@src.gnome.org>2003-08-17 10:50:35 +0000
commite902de752bbc6b5426de5c42293586e437667b18 (patch)
tree5eaacef50813ad1a3baf7d6b3418fbbbd03c3c44 /examples
parentd8c7f3631778ce11324f5257607e19eaddc41528 (diff)
downloadpygtk-e902de752bbc6b5426de5c42293586e437667b18.tar.gz
remove gtk.py, change the #! lines of the OpenGL examples to call "python"
rather than "python2.2".
Diffstat (limited to 'examples')
-rw-r--r--examples/gl/cone.py2
-rw-r--r--examples/gl/gears.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/gl/cone.py b/examples/gl/cone.py
index b0b2d6c2..66117e05 100644
--- a/examples/gl/cone.py
+++ b/examples/gl/cone.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2.2
+#!/usr/bin/env python
import gtk
import gtk.gl
diff --git a/examples/gl/gears.py b/examples/gl/gears.py
index 6692c9ca..43ddcef2 100644
--- a/examples/gl/gears.py
+++ b/examples/gl/gears.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2.2
+#!/usr/bin/env python
# A translation of the gears demo that comes with mesa, modified to use
# a few GtkHScale widgets for the rotation, rather than the keyboard.