Commit a74169b7 authored by Alexandre Vassalotti's avatar Alexandre Vassalotti

Remove a few tab characters introduced by r59314.

parent 09121e8e
......@@ -2602,12 +2602,12 @@ bytes_extend(PyBytesObject *self, PyObject *arg)
buf_size = _PyObject_LengthHint(arg);
/* The length of the argument is unknown or invalid. */
if (buf_size < 0) {
if (PyErr_Occurred()
if (PyErr_Occurred()
&& !PyErr_ExceptionMatches(PyExc_TypeError)
&& !PyErr_ExceptionMatches(PyExc_AttributeError)) {
Py_DECREF(it);
return NULL;
}
return NULL;
}
PyErr_Clear();
buf_size = 32; /* arbitrary */
}
......
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