summaryrefslogtreecommitdiffstats
path: root/Lib/xml
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2018-08-11 06:05:04 (GMT)
committerGitHub <noreply@github.com>2018-08-11 06:05:04 (GMT)
commit84a13fbda0d79789e3c9efcc9f64752261ce1e8d (patch)
tree5cc443f7bbfde403e0f7a731b5fda5fb4f54676a /Lib/xml
parent423d05f6f59b24c91b9ef6b2e4ac130316764382 (diff)
downloadcpython-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 'Lib/xml')
-rw-r--r--Lib/xml/dom/pulldom.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/xml/dom/pulldom.py b/Lib/xml/dom/pulldom.py
index 43504f7..96a8d59 100644
--- a/Lib/xml/dom/pulldom.py
+++ b/Lib/xml/dom/pulldom.py
@@ -217,6 +217,13 @@ class DOMEventStream:
self.parser.setContentHandler(self.pulldom)
def __getitem__(self, pos):
+ import warnings
+ warnings.warn(
+ "DOMEventStream's __getitem__ method ignores 'pos' parameter. "
+ "Use iterator protocol instead.",
+ DeprecationWarning,
+ stacklevel=2
+ )
rc = self.getEvent()
if rc:
return rc