diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-04-16 09:28:57 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-04-16 09:28:57 (GMT) |
commit | 119e502277d104286620806ef130e3c0d4f439f0 (patch) | |
tree | 78150447a369c7e43f4eb8b7a901655f6e66894e /Modules/_io/bytesio.c | |
parent | 00ccacc8db8194f15d8af26b788ec36314b990d1 (diff) | |
download | cpython-119e502277d104286620806ef130e3c0d4f439f0.zip cpython-119e502277d104286620806ef130e3c0d4f439f0.tar.gz cpython-119e502277d104286620806ef130e3c0d4f439f0.tar.bz2 |
Fix typos in code comments and documentation
Diffstat (limited to 'Modules/_io/bytesio.c')
-rw-r--r-- | Modules/_io/bytesio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_io/bytesio.c b/Modules/_io/bytesio.c index 49174b4..058df47 100644 --- a/Modules/_io/bytesio.c +++ b/Modules/_io/bytesio.c @@ -551,12 +551,12 @@ _io.BytesIO.readinto Read up to len(buffer) bytes into buffer. Returns number of bytes read (0 for EOF), or None if the object -is set not to block as has no data to read. +is set not to block and has no data to read. [clinic start generated code]*/ static PyObject * _io_BytesIO_readinto_impl(bytesio *self, Py_buffer *buffer) -/*[clinic end generated code: output=a5d407217dcf0639 input=71581f32635c3a31]*/ +/*[clinic end generated code: output=a5d407217dcf0639 input=b52a8782706f0037]*/ { Py_ssize_t len, n; |