diff options
author | sjtufs <[email protected]> | 2013-08-25 15:45:55 +0800 |
---|---|---|
committer | sjtufs <[email protected]> | 2013-08-25 15:45:55 +0800 |
commit | ac7633d8149a28af288ac0b850850cef9b13c151 (patch) | |
tree | 861fe3d57c114b5ec7f3141679428cc6302d21bc /server/rush.py | |
parent | a53f4d21238d2bccd58a22d7485e54f495dbd55d (diff) |
This is alpha
Diffstat (limited to 'server/rush.py')
-rw-r--r-- | server/rush.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/server/rush.py b/server/rush.py deleted file mode 100644 index f01804c..0000000 --- a/server/rush.py +++ /dev/null @@ -1,14 +0,0 @@ -from subprocess import Popen -procs = [] - -try: - for i in xrange(10): - p = Popen(["python", "client.py", str(i)]) - procs.append(p) - #p.wait() - print "done" - -except KeyboardInterrupt: - print "killing" - for p in procs: - p.kill() |