commit | dfc1b4bebe665fec10dfa94dd0defdcad370b211 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Mon May 26 15:12:28 2014 -0700 |
committer | Benjamin Peterson <benjamin@python.org> | Mon May 26 15:12:28 2014 -0700 |
tree | 6c5207b9d843ef4906ec075d42099639783a3047 | |
parent | 2eff14d3333073b39082caa798c2d43f5d8c28e4 [diff] [blame] |
remove tab (closes #21587)
diff --git a/Include/listobject.h b/Include/listobject.h index c445873..7cd616b 100644 --- a/Include/listobject.h +++ b/Include/listobject.h
@@ -41,7 +41,7 @@ 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);