diff options
author | Rafael Fontenelle <rffontenelle@users.noreply.github.com> | 2024-07-17 07:31:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-17 07:31:21 (GMT) |
commit | 5d98a4d266fef754455baf8e65a20dd140ebecd3 (patch) | |
tree | a594c4db5501817c234b5a8282a5b5a203448488 | |
parent | dc9cc91f76fbbaa09a3bb40d0cbb6f9a2381e269 (diff) | |
download | cpython-5d98a4d266fef754455baf8e65a20dd140ebecd3.zip cpython-5d98a4d266fef754455baf8e65a20dd140ebecd3.tar.gz cpython-5d98a4d266fef754455baf8e65a20dd140ebecd3.tar.bz2 |
Remove duplicate "it" in whatsnew 3.13 (#121580)
-rw-r--r-- | Doc/whatsnew/3.13.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index ca0d91d..58bad92 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -1941,7 +1941,7 @@ although there is currently no date scheduled for their removal. * :mod:`xml.etree.ElementTree`: Testing the truth value of an :class:`~xml.etree.ElementTree.Element` is deprecated. In a future release it - it will always return ``True``. Prefer explicit ``len(elem)`` or + will always return ``True``. Prefer explicit ``len(elem)`` or ``elem is not None`` tests instead. * :meth:`zipimport.zipimporter.load_module` is deprecated: |