# shell.py -- debugging shell for interacting with TeamTrack interface. # Gareth Rees, Ravenbrook Limited, 2000-08-07. # $Id: //info.ravenbrook.com/project/p4dti/branch/2000-09-13/demo-debugging/code/python-teamtrack-interface/shell.py#1 $ # Set up paths so that the teamtrack and replicator modules can be # loaded. The relative path assumes that this script is being run from # the teamtrack development directory (master/code/teamtrack). import sys sys.path = sys.path + ['..\\build\\debug', '..\\replicator'] # Set up paths so that IDLE (a Python GUI) can be run on Ravenbrook's # development platforms. sys.path = sys.path + ['c:\\Program Files\\Python\\Tools\\idle', 'd:\\Program Files\\Python\\Tools\\idle'] # Run IDLE. import PyShell PyShell.main()