From: Guido van Rossum Date: Tue, 11 Oct 1994 14:57:03 +0000 (+0000) Subject: update pathnames X-Git-Tag: v1.1~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4450bab75005f254ff78ac3c21a33aa203db4394;p=thirdparty%2FPython%2Fcpython.git update pathnames --- diff --git a/Demo/tkinter/guido/MimeViewer.py b/Demo/tkinter/guido/MimeViewer.py index 5bf194ab5441..06b7a882eddf 100755 --- a/Demo/tkinter/guido/MimeViewer.py +++ b/Demo/tkinter/guido/MimeViewer.py @@ -1,4 +1,4 @@ -#! /ufs/guido/bin/sgi/tkpython +#! /usr/local/bin/python # View a single MIME multipart message. # Display each part as a box. diff --git a/Demo/tkinter/guido/dialog.py b/Demo/tkinter/guido/dialog.py index 621646aeb5b4..27cddf0c82ec 100755 --- a/Demo/tkinter/guido/dialog.py +++ b/Demo/tkinter/guido/dialog.py @@ -1,4 +1,4 @@ -#! /ufs/guido/bin/sgi/tkpython +#! /usr/local/bin/python # A Python function that generates dialog boxes with a text message, # optional bitmap, and any number of buttons. diff --git a/Demo/tkinter/guido/electrons.py b/Demo/tkinter/guido/electrons.py index 56f33f46a2c6..5f6c8b589d6c 100755 --- a/Demo/tkinter/guido/electrons.py +++ b/Demo/tkinter/guido/electrons.py @@ -1,4 +1,5 @@ -#!/ufs/guido/bin/sgi/tkpython +#! /usr/local/bin/python + # Simulate "electrons" migrating across the screen. # An optional bitmap file in can be in the background. # diff --git a/Demo/tkinter/guido/mbox.py b/Demo/tkinter/guido/mbox.py index 41ece2400428..338231147b62 100755 --- a/Demo/tkinter/guido/mbox.py +++ b/Demo/tkinter/guido/mbox.py @@ -1,4 +1,4 @@ -#! /ufs/guido/bin/sgi/tkpython +#! /usr/local/bin/python # Scan MH folder, display results in window diff --git a/Demo/tkinter/guido/rmt.py b/Demo/tkinter/guido/rmt.py index 44bbcf4fc73f..25b84e220311 100755 --- a/Demo/tkinter/guido/rmt.py +++ b/Demo/tkinter/guido/rmt.py @@ -1,4 +1,4 @@ -#! /ufs/guido/bin/sgi/tkpython +#! /usr/local/bin/python # A Python program implementing rmt, an application for remotely # controlling other Tk applications. diff --git a/Demo/tkinter/guido/svkill.py b/Demo/tkinter/guido/svkill.py index c70e1d03c447..ed8a0a703688 100755 --- a/Demo/tkinter/guido/svkill.py +++ b/Demo/tkinter/guido/svkill.py @@ -1,4 +1,5 @@ -#! /ufs/guido/bin/sgi/tkpython +#! /usr/local/bin/python + # Tkinter interface to SYSV `kill' command. from Tkinter import * diff --git a/Demo/tkinter/guido/tkman.py b/Demo/tkinter/guido/tkman.py index ef94ce1b7578..1a913c3f515a 100755 --- a/Demo/tkinter/guido/tkman.py +++ b/Demo/tkinter/guido/tkman.py @@ -1,4 +1,4 @@ -#! /ufs/guido/bin/sgi/tkpython +#! /usr/local/bin/python # Tk man page browser -- currently only shows the Tcl/Tk man pages @@ -9,7 +9,7 @@ import regex from Tkinter import * import addpack -addpack.addpack('/ufs/guido/src/python/Demo/tkinter') +addpack.addpack('/ufs/guido/src/python/Demo/guido/tkinter') from ManPage import ManPage MANNDIR = '/usr/local/man/mann'