Fix missing semicolon

This commit is contained in:
Mark Dickinson 2009-10-15 15:18:55 +00:00
parent c63457b18e
commit 9d109742c0
1 changed files with 1 additions and 1 deletions

View File

@ -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