Kaydet (Commit) 9d109742 authored tarafından Mark Dickinson's avatar Mark Dickinson

Fix missing semicolon

üst c63457b1
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment