Initial Python 3 porting.
[pdm.git] / pdm-repl
index daa8c18..5faaa86 100755 (executable)
--- a/pdm-repl
+++ b/pdm-repl
@@ -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 == "":