diff options
author | Guido van Rossum <guido@python.org> | 2002-09-17 20:55:57 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2002-09-17 20:55:57 (GMT) |
commit | b0c87b956c81e30a9f3b3d393d1442f63c2dbfc3 (patch) | |
tree | cbd117574482176b4a7277ed5f30dc3e00050623 /Demo/sgi/al/names.py | |
parent | 4cb22048515deb55fdf46775400da9c841706248 (diff) | |
download | cpython-b0c87b956c81e30a9f3b3d393d1442f63c2dbfc3.zip cpython-b0c87b956c81e30a9f3b3d393d1442f63c2dbfc3.tar.gz cpython-b0c87b956c81e30a9f3b3d393d1442f63c2dbfc3.tar.bz2 |
Remove the SGI demos. These were all ancient and nobody cared enough.
Diffstat (limited to 'Demo/sgi/al/names.py')
-rwxr-xr-x | Demo/sgi/al/names.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Demo/sgi/al/names.py b/Demo/sgi/al/names.py deleted file mode 100755 index 5a8f538..0000000 --- a/Demo/sgi/al/names.py +++ /dev/null @@ -1,14 +0,0 @@ -import sys - -# My home directory/ -GUIDO = '/ufs/guido/' - -# Hack sys.path so AL can be found -LIB = GUIDO + 'lib/python' -if LIB not in sys.path: sys.path.insert(0, LIB) - -# Python binary to be used on remote machine -PYTHON = GUIDO + 'bin/sgi/python' - -# Directory where the programs live -AUDIODIR = GUIDO + 'src/python/demo/sgi/al' |