You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BufferedReader at least just forwards `None` from the underlying stream.
1. `BufferedReader.read(size=10)` `raw.read(size=10)` returns None
2. `BufferedReader.read()` without size, raw implements `readall()` which returns None
3. `BufferedReader.read()` without size, raw doesn't have readall so uses a loop that calls `raw.read()` which returns None.
0 commit comments