From dfc1b4bebe665fec10dfa94dd0defdcad370b211 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 26 May 2014 15:12:28 -0700 Subject: [PATCH] remove tab (closes #21587) --- Include/listobject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/listobject.h b/Include/listobject.h index c4458733b9c..7cd616ba0f4 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);