From 6508497f84204d4043c48980664ac464d8126be4 Mon Sep 17 00:00:00 2001 From: Stefan Behnel <stefan_ml@behnel.de> Date: Sun, 13 Jan 2019 11:49:08 +0100 Subject: [PATCH] Avoid PyLong "L" suffix in test output on Windows. --- tests/run/cpp_iterators.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/run/cpp_iterators.pyx b/tests/run/cpp_iterators.pyx index e5c54c9db..04cdd6777 100644 --- a/tests/run/cpp_iterators.pyx +++ b/tests/run/cpp_iterators.pyx @@ -25,7 +25,7 @@ def test_vector(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 """ cdef deque[int] dint @@ -38,7 +38,7 @@ def test_deque_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 """ cdef vector[int] vint = py_v -- 2.30.9