]> git.pld-linux.org Git - packages/python-gevent.git/blame - python-gevent-tests.patch
- rebuild with python 3.8
[packages/python-gevent.git] / python-gevent-tests.patch
CommitLineData
4f53d0c0
JB
1--- gevent-1.2.1/src/greentest/test__doctests.py.orig 2017-01-12 14:15:25.000000000 +0100
2+++ gevent-1.2.1/src/greentest/test__doctests.py 2017-03-14 22:18:48.660258016 +0100
3@@ -68,9 +68,12 @@
4 # 'cannot access'
5 (re.compile('cannot access non_existent_file: No such file or directory'),
6 'non_existent_file: No such file or directory'),
7+ (re.compile("cannot access 'non_existent_file': No such file or directory"),
8+ 'non_existent_file: No such file or directory'),
9 # Python 3 bytes add a "b".
10 (re.compile(r'b(".*?")'), r"\1"),
11 (re.compile(r"b('.*?')"), r"\1"),
12+ (re.compile(r'^"(.*?)"$'), r"'\1'"),
13 ))
14
15 tests_count = 0
cf0d448b 16
This page took 0.235003 seconds and 4 git commands to generate.