diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2018-08-11 06:05:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-11 06:05:04 (GMT) |
commit | 84a13fbda0d79789e3c9efcc9f64752261ce1e8d (patch) | |
tree | 5cc443f7bbfde403e0f7a731b5fda5fb4f54676a /Doc/whatsnew | |
parent | 423d05f6f59b24c91b9ef6b2e4ac130316764382 (diff) | |
download | cpython-84a13fbda0d79789e3c9efcc9f64752261ce1e8d.zip cpython-84a13fbda0d79789e3c9efcc9f64752261ce1e8d.tar.gz cpython-84a13fbda0d79789e3c9efcc9f64752261ce1e8d.tar.bz2 |
bpo-9372: Deprecate several __getitem__ methods (GH-8609)
The __getitem__ methods of DOMEventStream, FileInput,
and FileWrapper classes ignore their 'index' parameters
and return the next item instead.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.8.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index 6e0c8b8..ef5455a 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -154,6 +154,15 @@ 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 ========== |