mirror of https://github.com/python/cpython
Fix missing semicolon
This commit is contained in:
parent
c63457b18e
commit
9d109742c0
|
@ -3120,7 +3120,7 @@ bytearray_reduce(PyByteArrayObject *self)
|
||||||
latin1 = PyUnicode_DecodeLatin1(self->ob_bytes,
|
latin1 = PyUnicode_DecodeLatin1(self->ob_bytes,
|
||||||
Py_SIZE(self), NULL);
|
Py_SIZE(self), NULL);
|
||||||
#else
|
#else
|
||||||
latin1 = PyString_FromStringAndSize(self->ob_bytes, Py_SIZE(self))
|
latin1 = PyString_FromStringAndSize(self->ob_bytes, Py_SIZE(self));
|
||||||
#endif
|
#endif
|
||||||
else
|
else
|
||||||
#ifdef Py_USING_UNICODE
|
#ifdef Py_USING_UNICODE
|
||||||
|
|
Loading…
Reference in New Issue