summaryrefslogtreecommitdiffstats
path: root/Demo/sgi/al/names.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2002-09-17 20:55:57 (GMT)
committerGuido van Rossum <guido@python.org>2002-09-17 20:55:57 (GMT)
commitb0c87b956c81e30a9f3b3d393d1442f63c2dbfc3 (patch)
treecbd117574482176b4a7277ed5f30dc3e00050623 /Demo/sgi/al/names.py
parent4cb22048515deb55fdf46775400da9c841706248 (diff)
downloadcpython-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-xDemo/sgi/al/names.py14
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'