From f0aa55e11bba21bcbd563be1043cfda1be8ea779 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 31 Aug 2013 13:19:10 +0200 Subject: [PATCH] add test for raw_input() renaming in Py3 --- tests/compile/builtinfuncs.pyx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/compile/builtinfuncs.pyx b/tests/compile/builtinfuncs.pyx index 4fe53bf..b64de1d 100644 --- a/tests/compile/builtinfuncs.pyx +++ b/tests/compile/builtinfuncs.pyx @@ -25,4 +25,7 @@ cdef int f() except -1: #i = issubtype(x, y) x = abs +def not_called(): + response = raw_input('xyz') + f() -- 2.7.4