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
If the stream is not yet exhausted, this function will block to wait for more data if necessary, and then return false.
The current behaviour of always returning true before the first read means that the write(A::IO, B::IO) method (for B<:FileBuffer) and similar patterns are currently broken.
This is currently causing a problem for CSV.jl with S3Path and is also causing #126.
The text was updated successfully, but these errors were encountered:
According to the
eof
docs:The current behaviour of always returning
true
before the first read means that thewrite(A::IO, B::IO)
method (forB<:FileBuffer
) and similar patterns are currently broken.This is currently causing a problem for CSV.jl with
S3Path
and is also causing #126.The text was updated successfully, but these errors were encountered: