add test for raw_input() renaming in Py3
authorStefan Behnel <stefan_ml@behnel.de>
Sat, 31 Aug 2013 11:19:10 +0000 (13:19 +0200)
committerStefan Behnel <stefan_ml@behnel.de>
Sat, 31 Aug 2013 11:19:10 +0000 (13:19 +0200)
tests/compile/builtinfuncs.pyx

index 4fe53bf..b64de1d 100644 (file)
@@ -25,4 +25,7 @@ cdef int f() except -1:
     #i = issubtype(x, y)
     x = abs
 
+def not_called():
+    response = raw_input('xyz')
+
 f()