Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upProperly use collections.abc #7692
Comments
|
Report in Fedora : https://bugzilla.redhat.com/show_bug.cgi?id=1793478 |
|
Please see PR #7707. About testing: it's now possible to add It was fixed in Oct 2018 (html5lib/html5lib-python#403) but we're still waiting for a release (html5lib/html5lib-python#419). |
Python 3.9 is planning on enforcing that abstract base classes in the collections module are imported from
collections.abc. See https://docs.python.org/3/library/collections.html#module-collections.We currently are not always doing this in Certbot and are ignoring the deprecation warning about it at
certbot/pytest.ini
Line 16 in 6e07e8b
Properly testing and finding all occurrences of this problem is a little tricky (see #7691), but we should fix this and remove the
pytest.inientry well before Python 3.9 is released.