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
The docstring of the read method of _io.TextIOWrapper class has a typo.
The argument name size is not used in the explanation.
>>> file = open("/tmp/junk")
>>> help(file.read)
read(size=-1, /) method of _io.TextIOWrapper instance
Read at most n characters from stream.
Read from underlying buffer until we have n characters or we hit EOF.
If n is negative or omitted, read until EOF.
Documentation
The docstring of the read method of
_io.TextIOWrapper
class has a typo.The argument name
size
is not used in the explanation.Linked PRs
The text was updated successfully, but these errors were encountered: