[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2019-04-13 Thread Cheryl Sabella
Change by Cheryl Sabella : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 -Python 3.4, Python 3.5 ___ Python tracker ___

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2019-04-13 Thread Cheryl Sabella
Cheryl Sabella added the comment: New changeset f8716c88f13f035c126fc1db499ae0ea309c7ece by Cheryl Sabella in branch 'master': bpo-18610: Update wsgiref.validate docstring for wsgi.input read() (GH-11663) https://github.com/python/cpython/commit/f8716c88f13f035c126fc1db499ae0ea309c7ece

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2019-01-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -11469 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2019-01-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: -11468 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2019-01-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +11467, 11468, 11469 stage: needs patch -> patch review ___ Python tracker ___ ___ Pyth

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2019-01-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +11467, 11468 stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2019-01-23 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +11467 stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list m

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2015-02-18 Thread PJ Eby
PJ Eby added the comment: This area of the spec is different between 333 and precisely to clarify this point, without technically changing conformance requirements. PEP 333 was supposed to require the app to supply an argument, while PEP was changed to encourage the server to allow

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2015-02-17 Thread Robin Schoonover
Robin Schoonover added the comment: I'm not sure I follow, as it has little to say on whether the application's expected behavior here, and only a recommendation that the server allow it. But, it also defers to the "Python Standard Library", which does have an opinion. I feel that (in hindsi

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2015-02-17 Thread PJ Eby
PJ Eby added the comment: This is a misreading of the spec. The read() method is defined as taking exactly one parameter. The server *should* support it being optional, but the app invoking it without an argument is not compliant, and wsgiref.validate is validating that the *app* performs ac

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2015-02-11 Thread Berker Peksag
Berker Peksag added the comment: The change was suggested before PEP in issue 4718 (see msg78292), but PEP says: A server should allow read() to be called without an argument, and return the remainder of the client's input stream. https://www.python.org/dev/peps/pep-/#input-

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2014-06-30 Thread Robin Schoonover
Changes by Robin Schoonover : -- nosy: +pje ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue18610] wsgiref.validate expects wsgi.input read to give exactly one arg

2013-07-31 Thread Robin Schoonover
Changes by Robin Schoonover : -- title: wsgiref.validator expects wsgi.input read to give exactly one arg -> wsgiref.validate expects wsgi.input read to give exactly one arg ___ Python tracker