From e1c7ab579d6761a489b1f0e39c47ec2168302117 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 26 Mar 2019 14:53:32 +0530 Subject: [PATCH] ... --- src/polyglot/builtins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/polyglot/builtins.py b/src/polyglot/builtins.py index 71b7e2fa50..11857a5039 100644 --- a/src/polyglot/builtins.py +++ b/src/polyglot/builtins.py @@ -73,7 +73,7 @@ else: string_or_bytes = unicode, bytes long_type = long exec_path = execfile - raw_input = builtins['raw_input'] + raw_input = builtins.raw_input def iteritems(d): return d.iteritems()