summaryrefslogtreecommitdiff
path: root/dev-python/cython/files/cython-0.29.23-test_exceptions-py310.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/cython/files/cython-0.29.23-test_exceptions-py310.patch')
-rw-r--r--dev-python/cython/files/cython-0.29.23-test_exceptions-py310.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/dev-python/cython/files/cython-0.29.23-test_exceptions-py310.patch b/dev-python/cython/files/cython-0.29.23-test_exceptions-py310.patch
deleted file mode 100644
index 0c9fb2c9ea56..000000000000
--- a/dev-python/cython/files/cython-0.29.23-test_exceptions-py310.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- a/tests/run/test_exceptions.pyx
-+++ b/tests/run/test_exceptions.pyx
-@@ -188,7 +188,10 @@
-
- # should not apply to subclasses, see issue #31161
- s = '''if True:\nprint "No indent"'''
-- ckmsg(s, "expected an indented block", IndentationError)
-+ if sys.version_info >= (3, 10):
-+ ckmsg(s, "expected an indented block after 'if' statement on line 1", IndentationError)
-+ else:
-+ ckmsg(s, "expected an indented block", IndentationError)
-
- s = '''if True:\n print()\n\texec "mixed tabs and spaces"'''
- ckmsg(s, "inconsistent use of tabs and spaces in indentation", TabError)