diff options
| author | Guido van Rossum <guido@python.org> | 2007-06-14 00:29:43 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 2007-06-14 00:29:43 +0000 |
| commit | 27ff74d8a98ce8a3ba2134568da730926862c7a4 (patch) | |
| tree | 295dc874e17a042da6d8d824720753c37de71fa0 | |
| parent | bdbb395f2b3dd8de75f0f3cc7754b94a6d89e017 (diff) | |
| download | cpython-git-27ff74d8a98ce8a3ba2134568da730926862c7a4.tar.gz | |
Fix another issue likely introduced by the merge.
| -rw-r--r-- | Modules/cjkcodecs/multibytecodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cjkcodecs/multibytecodec.c b/Modules/cjkcodecs/multibytecodec.c index 81b3500d98..933aa1b0a0 100644 --- a/Modules/cjkcodecs/multibytecodec.c +++ b/Modules/cjkcodecs/multibytecodec.c @@ -1247,7 +1247,7 @@ mbstreamreader_iread(MultibyteStreamReaderObject *self, goto errorexit; } - endoffile = (PyString_GET_SIZE(cres) == 0); + endoffile = (PyBytes_GET_SIZE(cres) == 0); if (self->pendingsize > 0) { PyObject *ctr; |
