Package: python-cffi / 2.0.0-3

Metadata

Package Version Patches format
python-cffi 2.0.0-3 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
bundled wheel and setuptools | (download)

testing/cffi0/test_zintegration.py | 14 1 + 13 - 0 !
1 file changed, 1 insertion(+), 13 deletions(-)

 use virtualenvs' bundled wheel and setuptools

We can't install it from the Internet in our builds, without Internet
access.

Bug-Debian: https://bugs.debian.org/1055337

pycparser 3 | (download)

testing/cffi0/test_parsing.py | 18 9 + 9 - 0 !
1 file changed, 9 insertions(+), 9 deletions(-)

 make test_parsing more resilient to changes in pycparser (#224)

* Make test_parsing more resilient to changes in pycparser

Several tests expect precise error messages from pycparser, which pycparser
doesn't guarantee. While testing CFFI with pycparser 3.0, some tests needed
to be made more resilient. I've used the .startswith() approach already used
in this file, instead of exact string matching.

Ref #223

* Loosen error message assertion even more