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