Browse Source

py/stream: Typo fix in comment.

pull/2570/head
Paul Sokolovsky 8 years ago
parent
commit
8a49905a2f
  1. 2
      py/stream.c

2
py/stream.c

@ -391,7 +391,7 @@ STATIC mp_obj_t stream_unbuffered_readline(size_t n_args, const mp_obj_t *args)
if (mp_is_nonblocking_error(error)) { if (mp_is_nonblocking_error(error)) {
if (vstr.len == 1) { if (vstr.len == 1) {
// We just incremented it, but otherwise we read nothing // We just incremented it, but otherwise we read nothing
// and immediately got EAGAIN. This is case is not well // and immediately got EAGAIN. This case is not well
// specified in // specified in
// https://docs.python.org/3/library/io.html#io.IOBase.readline // https://docs.python.org/3/library/io.html#io.IOBase.readline
// unlike similar case for read(). But we follow the latter's // unlike similar case for read(). But we follow the latter's

Loading…
Cancel
Save