mirror of
https://github.com/python/cpython.git
synced 2025-08-01 07:33:08 +00:00
Whitespace: break long line
This commit is contained in:
parent
d08eaf4d1b
commit
92a6be4318
1 changed files with 2 additions and 1 deletions
|
@ -186,7 +186,8 @@ u_setitem(arrayobject *ap, Py_ssize_t i, PyObject *v)
|
|||
if (!PyArg_Parse(v, "u#;array item must be unicode character", &p, &len))
|
||||
return -1;
|
||||
if (len != 1) {
|
||||
PyErr_SetString(PyExc_TypeError, "array item must be unicode character");
|
||||
PyErr_SetString(PyExc_TypeError,
|
||||
"array item must be unicode character");
|
||||
return -1;
|
||||
}
|
||||
if (i >= 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue