From: Benjamin Peterson Date: Mon, 26 May 2014 22:12:28 +0000 (-0700) Subject: remove tab (closes #21587) X-Git-Tag: v3.4.2rc1~499 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1a2cf9aba786516a85bbb58285bfe245853b2a90;p=python remove tab (closes #21587) --- diff --git a/Include/listobject.h b/Include/listobject.h index dc62aee91a..74cf46f4f9 100644 --- a/Include/listobject.h +++ b/Include/listobject.h @@ -46,7 +46,7 @@ PyAPI_DATA(PyTypeObject) PyListRevIter_Type; PyAPI_DATA(PyTypeObject) PySortWrapper_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);