close
is underdocumented, and inconsistently implemented
#57944
Labels
io
Involving the I/O subsystem: libuv, read, write, etc.
It's not clear how a closed IO object behaves. Will reading/writing from it error? Or will it simply return no bytes / write no bytes?
Will it change
isreadable
andiswritable
?Currently, this is all over the place for different IOs:
IOStream
, closing the stream does not changeiswritable
orisreadable
. Closed streams can be read, but return zero bytes. They can be written to, but write zero bytes.IOBuffer
, closing the stream unsetsisreadable
andiswritable
. Trying to write to or read from it will cause an error.DevNull
does not change is readable or writable state. A closeddevnull
can be read, returning zero bytes, but you can still write to it and if you do, it behaves like an opendevnull
.stdin
(the default REPL TTY one), closing it changesisreadable
, but reading from it returns zero bytesI propose we make it work consistently. I don't really care which one we end up with. I can pitch a PR changing them all to behave like
IOStream
and documenting the expected behaviour, if there is interest.See also: #38703
The text was updated successfully, but these errors were encountered: