-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cElementTree was removed in Python 3.9 #50
Labels
Comments
tiran
added a commit
that referenced
this issue
Apr 3, 2020
Python 3.9 no longer ships the xml.etree.cElementTree module. defusedxml no longer provides the a fixed module with 3.9 as well. defusedxml.cElementTree is still available with 3.8. See: https://bugs.python.org/issue36543 See: python/cpython#19108 Fixes: #50 Signed-off-by: Christian Heimes <christian@python.org>
tiran
added a commit
that referenced
this issue
Apr 3, 2020
Python 3.9 no longer ships the xml.etree.cElementTree module. defusedxml no longer provides the a fixed module with 3.9 as well. defusedxml.cElementTree is still available with 3.8. See: https://bugs.python.org/issue36543 See: python/cpython#19108 Fixes: #50 Signed-off-by: Christian Heimes <christian@python.org>
tiran
added a commit
that referenced
this issue
Apr 3, 2020
Python 3.9 no longer ships the xml.etree.cElementTree module. defusedxml no longer provides the a fixed module with 3.9 as well. defusedxml.cElementTree is still available with 3.8. See: https://bugs.python.org/issue36543 See: python/cpython#19108 Fixes: #50 Signed-off-by: Christian Heimes <christian@python.org>
tiran
added a commit
that referenced
this issue
Apr 3, 2020
Python 3.9 no longer ships the xml.etree.cElementTree module. defusedxml no longer provides the a fixed module with 3.9 as well. defusedxml.cElementTree is still available with 3.8. See: https://bugs.python.org/issue36543 See: python/cpython#19108 Fixes: #50 Signed-off-by: Christian Heimes <christian@python.org>
Merged
tiran
added a commit
that referenced
this issue
Apr 3, 2020
Python 3.9 no longer ships the xml.etree.cElementTree module. defusedxml no longer provides the a fixed module with 3.9 as well. defusedxml.cElementTree is still available with 3.8. See: https://bugs.python.org/issue36543 See: python/cpython#19108 Fixes: #50 Signed-off-by: Christian Heimes <christian@python.org>
tiran
added a commit
that referenced
this issue
Apr 3, 2020
Python 3.9 no longer ships the xml.etree.cElementTree module. defusedxml no longer provides the a fixed module with 3.9 as well. defusedxml.cElementTree is still available with 3.8. See: https://bugs.python.org/issue36543 See: python/cpython#19108 Fixes: #50 Signed-off-by: Christian Heimes <christian@python.org>
tiran
added a commit
that referenced
this issue
Apr 15, 2020
Python 3.9 no longer ships the xml.etree.cElementTree module. defusedxml no longer provides the a fixed module with 3.9 as well. defusedxml.cElementTree is still available with 3.8. See: https://bugs.python.org/issue36543 See: python/cpython#19108 Fixes: #50 Signed-off-by: Christian Heimes <christian@python.org>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The
xml.etree.cElementTree
module was removed from Python master (3.9) an favor of thexml.etree.ElementTree
module. See PR python/cpython#19108Since Python 3.9 no longer offers the module, it makes sense to me to also remove the module from defusedxml.
The text was updated successfully, but these errors were encountered: