X-Git-Url: http://dolda2000.com/gitweb/?p=pdm.git;a=blobdiff_plain;f=pdm-repl;h=cc5c2890465d1c39e46902b0644be9c7cd50d9f8;hp=992df4ff87d121c22c59e60b6aa1a3cc419d4ffe;hb=98ecc02e068d7108325210c9fd9f510ec7bae66c;hpb=e3250828c55a4795bfd7ca03d3ef52c56e843252 diff --git a/pdm-repl b/pdm-repl index 992df4f..cc5c289 100755 --- a/pdm-repl +++ b/pdm-repl @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 import sys, getopt, readline import pdm.cli @@ -24,9 +24,9 @@ buf = "" while True: try: if buf != "": - line = raw_input(" ") + line = input(" ") else: - line = raw_input("% ") + line = input("% ") except EOFError: break if line == "":