X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=pdm-repl;fp=pdm-repl;h=daa8c1888da9e8c0e027fe3a02be60ed9d388819;hb=37ee55d2b9034ff1373bff4e214d346111e01cef;hp=0000000000000000000000000000000000000000;hpb=709446f68b088f46f070c3e79342975a9af6b601;p=pdm.git diff --git a/pdm-repl b/pdm-repl new file mode 100755 index 0000000..daa8c18 --- /dev/null +++ b/pdm-repl @@ -0,0 +1,40 @@ +#!/usr/bin/python + +import sys, getopt, readline +import pdm.cli + +def usage(out): + out.write("usage: pdm-repl [-h] SOCKET\n") + +opts, args = getopt.getopt(sys.argv[1:], "h") +for o, a in opts: + if o == "-h": + usage(sys.stdout) + sys.exit(0) +if len(args) < 1: + usage(sys.stderr) + sys.exit(1) +cl = pdm.cli.replclient(args[0]) + +buf = "" +while True: + try: + if buf != "": + line = raw_input(" ") + else: + line = raw_input("% ") + except EOFError: + break + if line == "": + sys.stdout.write(cl.run(buf)) + buf = "" + else: + if buf == "": + try: + compile(line, "Nought", "eval") + except: + pass + else: + sys.stdout.write(cl.run(line)) + continue + buf += line + "\n"