diff options
author | Cheryl Sabella <cheryl.sabella@gmail.com> | 2019-04-13 12:01:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-13 12:01:15 (GMT) |
commit | f8716c88f13f035c126fc1db499ae0ea309c7ece (patch) | |
tree | 080b8bd32564b8b1491a333d651e62cb1929b70f /Lib/wsgiref | |
parent | e59ec1b05d3e1487ca7754530d3748446c9b7dfd (diff) | |
download | cpython-f8716c88f13f035c126fc1db499ae0ea309c7ece.zip cpython-f8716c88f13f035c126fc1db499ae0ea309c7ece.tar.gz cpython-f8716c88f13f035c126fc1db499ae0ea309c7ece.tar.bz2 |
bpo-18610: Update wsgiref.validate docstring for wsgi.input read() (GH-11663)
Diffstat (limited to 'Lib/wsgiref')
-rw-r--r-- | Lib/wsgiref/validate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/wsgiref/validate.py b/Lib/wsgiref/validate.py index 1c00bde..48ac007 100644 --- a/Lib/wsgiref/validate.py +++ b/Lib/wsgiref/validate.py @@ -77,7 +77,7 @@ Some of the things this checks: * That wsgi.input is used properly: - - .read() is called with zero or one argument + - .read() is called with exactly one argument - That it returns a string |