Commit d98a76b0 authored by Stefan Behnel's avatar Stefan Behnel

Py3 test fixes

parent 0a33f1e6
...@@ -10,7 +10,7 @@ class A: ...@@ -10,7 +10,7 @@ class A:
@cython.test_fail_if_path_exists('//SimpleCallNode/AttributeNode') @cython.test_fail_if_path_exists('//SimpleCallNode/AttributeNode')
def simple_pop(L): def simple_pop(L):
""" """
>>> L = range(10) >>> L = list(range(10))
>>> simple_pop(L) >>> simple_pop(L)
9 9
>>> simple_pop(L) >>> simple_pop(L)
...@@ -36,7 +36,7 @@ def simple_pop(L): ...@@ -36,7 +36,7 @@ def simple_pop(L):
@cython.test_fail_if_path_exists('//SimpleCallNode/AttributeNode') @cython.test_fail_if_path_exists('//SimpleCallNode/AttributeNode')
def index_pop(L, int i): def index_pop(L, int i):
""" """
>>> L = range(10) >>> L = list(range(10))
>>> index_pop(L, 2) >>> index_pop(L, 2)
2 2
>>> index_pop(L, -2) >>> index_pop(L, -2)
...@@ -71,7 +71,7 @@ def index_pop(L, int i): ...@@ -71,7 +71,7 @@ def index_pop(L, int i):
@cython.test_fail_if_path_exists('//PythonCapiCallNode') @cython.test_fail_if_path_exists('//PythonCapiCallNode')
def crazy_pop(L): def crazy_pop(L):
""" """
>>> crazy_pop(range(10)) >>> crazy_pop(list(range(10)))
Traceback (most recent call last): Traceback (most recent call last):
... ...
TypeError: pop() takes at most 1 argument (3 given) TypeError: pop() takes at most 1 argument (3 given)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment