Commit 6508497f authored by Stefan Behnel's avatar Stefan Behnel

Avoid PyLong "L" suffix in test output on Windows.

parent d2bed7f0
...@@ -25,7 +25,7 @@ def test_vector(py_v): ...@@ -25,7 +25,7 @@ def test_vector(py_v):
def test_deque_iterator_subtraction(py_v): def test_deque_iterator_subtraction(py_v):
""" """
>>> test_deque_iterator_subtraction([1, 2, 3]) >>> print(test_deque_iterator_subtraction([1, 2, 3]))
3 3
""" """
cdef deque[int] dint cdef deque[int] dint
...@@ -38,7 +38,7 @@ def test_deque_iterator_subtraction(py_v): ...@@ -38,7 +38,7 @@ def test_deque_iterator_subtraction(py_v):
def test_vector_iterator_subtraction(py_v): def test_vector_iterator_subtraction(py_v):
""" """
>>> test_vector_iterator_subtraction([1, 2, 3]) >>> print(test_vector_iterator_subtraction([1, 2, 3]))
3 3
""" """
cdef vector[int] vint = py_v cdef vector[int] vint = py_v
......
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