mirror of
https://github.com/python/cpython.git
synced 2025-11-02 11:08:57 +00:00
Fix another issue likely introduced by the merge.
This commit is contained in:
parent
bdbb395f2b
commit
27ff74d8a9
1 changed files with 1 additions and 1 deletions
|
|
@ -1247,7 +1247,7 @@ mbstreamreader_iread(MultibyteStreamReaderObject *self,
|
||||||
goto errorexit;
|
goto errorexit;
|
||||||
}
|
}
|
||||||
|
|
||||||
endoffile = (PyString_GET_SIZE(cres) == 0);
|
endoffile = (PyBytes_GET_SIZE(cres) == 0);
|
||||||
|
|
||||||
if (self->pendingsize > 0) {
|
if (self->pendingsize > 0) {
|
||||||
PyObject *ctr;
|
PyObject *ctr;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue