diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-10-15 15:18:55 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-10-15 15:18:55 (GMT) |
commit | 9d109742c0803521cee7e92956e628b98906797d (patch) | |
tree | fcc35f157ed81334915fc8409ccab36536aed4db | |
parent | c63457b18e986ae74a13e5b6601bdbd58e909c84 (diff) | |
download | cpython-9d109742c0803521cee7e92956e628b98906797d.zip cpython-9d109742c0803521cee7e92956e628b98906797d.tar.gz cpython-9d109742c0803521cee7e92956e628b98906797d.tar.bz2 |
Fix missing semicolon
-rw-r--r-- | Objects/bytearrayobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/bytearrayobject.c b/Objects/bytearrayobject.c index 0390c1d..2262601 100644 --- a/Objects/bytearrayobject.c +++ b/Objects/bytearrayobject.c @@ -3120,7 +3120,7 @@ bytearray_reduce(PyByteArrayObject *self) latin1 = PyUnicode_DecodeLatin1(self->ob_bytes, Py_SIZE(self), NULL); #else - latin1 = PyString_FromStringAndSize(self->ob_bytes, Py_SIZE(self)) + latin1 = PyString_FromStringAndSize(self->ob_bytes, Py_SIZE(self)); #endif else #ifdef Py_USING_UNICODE |