[issue3834] wsgiref.validator.InputWrapper readline method has wrong signature

2008-09-11 Thread Phillip J. Eby
Phillip J. Eby <[EMAIL PROTECTED]> added the comment: Per PEP 333: """The optional "size" argument to readline() is not supported, as it may be complex for server authors to implement, and is not often used in practice.""" The whole point of this code is to catch broken programs that pass an ar

[issue3834] wsgiref.validator.InputWrapper readline method has wrong signature

2008-09-11 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> pje nosy: +pje ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-

[issue3834] wsgiref.validator.InputWrapper readline method has wrong signature

2008-09-11 Thread Christopher Arndt
New submission from Christopher Arndt <[EMAIL PROTECTED]>: The readline method in the InputWrapper class in wsgiref.validate does not accept any arguments and therefore is not compatible with the "file-like" interface, where the readline method accepts an optional "size" argument. This breaks