-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prevents premature EOFError on blocking reads #13620
Conversation
Blocks until the required number of bytes has been read. Only throws EOFError on actual EOF. Fixes JuliaLang#13559.
@pao Done. |
Thanks! |
Changes to .travis.yml usually need a rebase to take effect. Delete the now unused C function? |
Oh. Right. Duh. My bad. From the branch name this looks like this was submitted from the GitHub editor. @hessammehr, you feel up to doing the rebase? |
A new commit to the same branch might also make Travis re-run the yml to sh conversion, I'm not positive. How Travis works can be subtle sometimes. |
This branch would be missing the commits which update the |
That'll work. Superceded by #13632, then. |
Travis might recompute for a new merge commit. |
Blocks until the required number of bytes has been read. Only throws
EOFError
on actualEOF
. Fixes #13559.