From d04d29e4f600a94223b0ca7f4d7c802ecaaf1d70 Mon Sep 17 00:00:00 2001 From: "Bradley M. Froehle" Date: Thu, 19 Jul 2012 10:48:15 -0700 Subject: [PATCH] Fix missing raw_input in Python 3. --- pudb/debugger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pudb/debugger.py b/pudb/debugger.py index 0dd753e6..a8c6e7b1 100644 --- a/pudb/debugger.py +++ b/pudb/debugger.py @@ -10,7 +10,7 @@ CONFIG = load_config() save_config(CONFIG) -from pudb.py3compat import PY3 +from pudb.py3compat import PY3, raw_input if PY3: _next = "__next__" else: