summaryrefslogtreecommitdiffstats
path: root/Lib/wsgiref
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/wsgiref
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/wsgiref')
-rw-r--r--Lib/wsgiref/util.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/wsgiref/util.py b/Lib/wsgiref/util.py
index 516fe89..1cff7a3 100644
--- a/Lib/wsgiref/util.py
+++ b/Lib/wsgiref/util.py
@@ -18,6 +18,13 @@ class FileWrapper:
self.close = filelike.close
def __getitem__(self,key):
+ import warnings
+ warnings.warn(
+ "FileWrapper's __getitem__ method ignores 'key' parameter. "
+ "Use iterator protocol instead.",
+ DeprecationWarning,
+ stacklevel=2
+ )
data = self.filelike.read(self.blksize)
if data:
return data