From: Benjamin Peterson Date: Mon, 26 May 2014 22:12:28 +0000 (-0700) Subject: remove tab (closes #21587) X-Git-Tag: v2.7.8~37^2~79 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dfc1b4bebe665fec10dfa94dd0defdcad370b211;p=python remove tab (closes #21587) --- diff --git a/Include/listobject.h b/Include/listobject.h index c4458733b9..7cd616ba0f 100644 --- a/Include/listobject.h +++ b/Include/listobject.h @@ -41,7 +41,7 @@ typedef struct { PyAPI_DATA(PyTypeObject) PyList_Type; #define PyList_Check(op) \ - PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS) + PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_LIST_SUBCLASS) #define PyList_CheckExact(op) (Py_TYPE(op) == &PyList_Type) PyAPI_FUNC(PyObject *) PyList_New(Py_ssize_t size);