]> git.pld-linux.org Git - packages/python-gevent.git/blob - python-gevent-tests.patch
- rebuild with python 3.8
[packages/python-gevent.git] / python-gevent-tests.patch
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
16
This page took 0.066677 seconds and 3 git commands to generate.