gh-95105: Return Iterator from wsgiref.types.InputStream.__iter__ (#95106)

This commit is contained in:
Shantanu 2022-07-21 13:26:04 -07:00 committed by GitHub
parent 936f71e5d4
commit b4378948a0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -0,0 +1 @@
:meth:`wsgiref.types.InputStream.__iter__` should return ``Iterator[bytes]``, not ``Iterable[bytes]``. Patch by Shantanu Jain.