diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2018-08-21 14:58:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-21 14:58:49 (GMT) |
commit | ef8861c112ed1dac9351958c121bc24ca4ecdb08 (patch) | |
tree | 6c6886c57852ba99ab5cc07651650c47e0dbd796 /Doc | |
parent | 3e26e42c905852394fa136f1cc564dac98b56166 (diff) | |
download | cpython-ef8861c112ed1dac9351958c121bc24ca4ecdb08.zip cpython-ef8861c112ed1dac9351958c121bc24ca4ecdb08.tar.gz cpython-ef8861c112ed1dac9351958c121bc24ca4ecdb08.tar.bz2 |
Fix Doc/whatsnew/3.8.rst (GH-8848)
The entry about deprecation of __getitem__ methods of
several classes was placed in the wrong section.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index ef5455a..1f816a1 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -154,15 +154,6 @@ Build and C API Changes (Contributed by Antoine Pitrou in :issue:`32430`.) -* The :meth:`__getitem__` methods of :class:`xml.dom.pulldom.DOMEventStream`, - :class:`wsgiref.util.FileWrapper` and :class:`fileinput.FileInput` have been - deprecated. - - Implementations of these methods have been ignoring their *index* parameter, - and returning the next item instead. - - (Contributed by Berker Peksag in :issue:`9372`.) - Deprecated ========== @@ -179,6 +170,15 @@ Deprecated deprecated and will be prohibited in Python 3.9. (Contributed by Elvis Pranskevichus in :issue:`34075`.) +* The :meth:`__getitem__` methods of :class:`xml.dom.pulldom.DOMEventStream`, + :class:`wsgiref.util.FileWrapper` and :class:`fileinput.FileInput` have been + deprecated. + + Implementations of these methods have been ignoring their *index* parameter, + and returning the next item instead. + + (Contributed by Berker Peksag in :issue:`9372`.) + Removed ======= |