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/library/xml.dom.pulldom.rst | |
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/library/xml.dom.pulldom.rst')
-rw-r--r-- | Doc/library/xml.dom.pulldom.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/xml.dom.pulldom.rst b/Doc/library/xml.dom.pulldom.rst index 5c0f469..56f545c 100644 --- a/Doc/library/xml.dom.pulldom.rst +++ b/Doc/library/xml.dom.pulldom.rst @@ -100,6 +100,8 @@ DOMEventStream Objects .. class:: DOMEventStream(stream, parser, bufsize) + .. deprecated:: 3.8 + Support for :meth:`sequence protocol <__getitem__>` is deprecated. .. method:: getEvent() |