Guido van Rossum | c96f38e | 1991-09-15 21:26:30 +0000 | [diff] [blame^] | 1 | |
2 | # My home directory/ | ||||
3 | GUIDO = '/ufs/guido/' | ||||
4 | |||||
5 | # Hack sys.path so AL can be found | ||||
6 | LIB = GUIDO + 'lib/python' | ||||
7 | if LIB not in sys.path: sys.path.insert(0, LIB) | ||||
8 | |||||
9 | # Python binary to be used on remote machine | ||||
10 | PYTHON = GUIDO + 'bin/sgi/python' | ||||
11 | |||||
12 | # Directory where the programs live | ||||
13 | AUDIODIR = GUIDO + 'src/python/demo/srg/al' |