diff options
author | Guido van Rossum <guido@python.org> | 1994-10-06 15:50:49 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-10-06 15:50:49 (GMT) |
commit | ac97fd7fc841b8b06fc0862847a5c2988fb9eed6 (patch) | |
tree | 1b878fd0d20a93c224a32cfa7d03d5ca6cc708cf /Demo | |
parent | 9702c4bde00a63611b09ad9b60c27d046a2a5c0b (diff) | |
download | cpython-ac97fd7fc841b8b06fc0862847a5c2988fb9eed6.zip cpython-ac97fd7fc841b8b06fc0862847a5c2988fb9eed6.tar.gz cpython-ac97fd7fc841b8b06fc0862847a5c2988fb9eed6.tar.bz2 |
Micro portability changes
Diffstat (limited to 'Demo')
-rwxr-xr-x | Demo/tkinter/guido/kill.py | 2 | ||||
-rwxr-xr-x | Demo/tkinter/guido/tkman.py | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Demo/tkinter/guido/kill.py b/Demo/tkinter/guido/kill.py index 93092e2..8f45a29 100755 --- a/Demo/tkinter/guido/kill.py +++ b/Demo/tkinter/guido/kill.py @@ -1,4 +1,4 @@ -#!/usr/local/bin/tkpython +#!/usr/local/bin/python # Tkinter interface to Linux `kill' command. from Tkinter import * diff --git a/Demo/tkinter/guido/tkman.py b/Demo/tkinter/guido/tkman.py index fecf962..ef94ce1 100755 --- a/Demo/tkinter/guido/tkman.py +++ b/Demo/tkinter/guido/tkman.py @@ -7,6 +7,9 @@ import os import string import regex from Tkinter import * + +import addpack +addpack.addpack('/ufs/guido/src/python/Demo/tkinter') from ManPage import ManPage MANNDIR = '/usr/local/man/mann' |