summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVirgil Dupras <vdupras@gentoo.org>2019-01-09 20:15:27 -0500
committerVirgil Dupras <vdupras@gentoo.org>2019-01-09 20:15:27 -0500
commit42fb4d8d983aefdcf5e24b0bd0eab86c76a9a7cd (patch)
tree9e7648145a68580d0e753eab6fcbe34bc31bb418 /dev-python/pytest/files
parentsys-apps/util-linux: Bump to version 2.33.1 (diff)
downloadgentoo-42fb4d8d983aefdcf5e24b0bd0eab86c76a9a7cd.tar.gz
gentoo-42fb4d8d983aefdcf5e24b0bd0eab86c76a9a7cd.tar.bz2
gentoo-42fb4d8d983aefdcf5e24b0bd0eab86c76a9a7cd.zip
dev-python/pytest: remove old
Signed-off-by: Virgil Dupras <vdupras@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
Diffstat (limited to 'dev-python/pytest/files')
-rw-r--r--dev-python/pytest/files/pytest-3.6.3-pypy-syntaxerror-offset.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/dev-python/pytest/files/pytest-3.6.3-pypy-syntaxerror-offset.patch b/dev-python/pytest/files/pytest-3.6.3-pypy-syntaxerror-offset.patch
deleted file mode 100644
index 31dd00546761..000000000000
--- a/dev-python/pytest/files/pytest-3.6.3-pypy-syntaxerror-offset.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-https://salsa.debian.org/python-team/modules/pytest/commit/405c05a0827592515de76e23c94de1f7773273e6.patch
-
-(updated by mgorny for 3.6.3 -- upstream quoting changes)
-
-From 405c05a0827592515de76e23c94de1f7773273e6 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ond=C5=99ej=20Nov=C3=BD?= <onovy@debian.org>
-Date: Thu, 10 May 2018 11:42:56 +0200
-Subject: [PATCH] Fix PyPy SyntaxError offset in tests
-
----
- testing/code/test_source.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/testing/code/test_source.py b/testing/code/test_source.py
-index fcce3fa..22278d8 100644
---- a/testing/code/test_source.py
-+++ b/testing/code/test_source.py
-@@ -117,7 +117,7 @@ def test_source_strip_multiline():
- def test_syntaxerror_rerepresentation():
- ex = pytest.raises(SyntaxError, _pytest._code.compile, "xyz xyz")
- assert ex.value.lineno == 1
-- assert ex.value.offset in (4, 7) # XXX pypy/jython versus cpython?
-+ assert ex.value.offset in (4, 5, 7) # XXX pypy/jython versus cpython?
- assert ex.value.text.strip(), "x x"
-
-
---
-2.18.0
-