talk-0.001/
talk-0.001/CVS/
talk-0.001/talklib/CVS/
#!/usr/bin/python -OO
"This script is used to initiate the talker and all its libraries."
import sys
import talklib.handler

# edit the following line to change the port the talker runs on
port = 4321

if __name__ == '__main__':
    server = talklib.handler.TalkServer(port)
    server.serve_forever()