Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4450bab

Browse files
committed
update pathnames
1 parent 1146c87 commit 4450bab

7 files changed

Lines changed: 10 additions & 8 deletions

File tree

Demo/tkinter/guido/MimeViewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /ufs/guido/bin/sgi/tkpython
1+
#! /usr/local/bin/python
22

33
# View a single MIME multipart message.
44
# Display each part as a box.

Demo/tkinter/guido/dialog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /ufs/guido/bin/sgi/tkpython
1+
#! /usr/local/bin/python
22

33
# A Python function that generates dialog boxes with a text message,
44
# optional bitmap, and any number of buttons.

Demo/tkinter/guido/electrons.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/ufs/guido/bin/sgi/tkpython
1+
#! /usr/local/bin/python
2+
23
# Simulate "electrons" migrating across the screen.
34
# An optional bitmap file in can be in the background.
45
#

Demo/tkinter/guido/mbox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /ufs/guido/bin/sgi/tkpython
1+
#! /usr/local/bin/python
22

33
# Scan MH folder, display results in window
44

Demo/tkinter/guido/rmt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /ufs/guido/bin/sgi/tkpython
1+
#! /usr/local/bin/python
22

33
# A Python program implementing rmt, an application for remotely
44
# controlling other Tk applications.

Demo/tkinter/guido/svkill.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#! /ufs/guido/bin/sgi/tkpython
1+
#! /usr/local/bin/python
2+
23
# Tkinter interface to SYSV `kill' command.
34

45
from Tkinter import *

Demo/tkinter/guido/tkman.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#! /ufs/guido/bin/sgi/tkpython
1+
#! /usr/local/bin/python
22

33
# Tk man page browser -- currently only shows the Tcl/Tk man pages
44

@@ -9,7 +9,7 @@
99
from Tkinter import *
1010

1111
import addpack
12-
addpack.addpack('/ufs/guido/src/python/Demo/tkinter')
12+
addpack.addpack('/ufs/guido/src/python/Demo/guido/tkinter')
1313
from ManPage import ManPage
1414

1515
MANNDIR = '/usr/local/man/mann'

0 commit comments

Comments
 (0)