X-Git-Url: http://dolda2000.com/gitweb/?a=blobdiff_plain;f=pdm-repl;h=c8fe2773768896b132a80d1e69d287ca21be259e;hb=11d50d09baf13d705e78090ca591d4cef38f4942;hp=daa8c1888da9e8c0e027fe3a02be60ed9d388819;hpb=37ee55d2b9034ff1373bff4e214d346111e01cef;p=pdm.git diff --git a/pdm-repl b/pdm-repl index daa8c18..c8fe277 100755 --- a/pdm-repl +++ b/pdm-repl @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 import sys, getopt, readline import pdm.cli @@ -20,9 +20,9 @@ buf = "" while True: try: if buf != "": - line = raw_input(" ") + line = input(" ") else: - line = raw_input("% ") + line = input("% ") except EOFError: break if line == "":