aboutsummaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-05-26 15:12:28 -0700
committerBenjamin Peterson <benjamin@python.org>2014-05-26 15:12:28 -0700
commit1a2cf9aba786516a85bbb58285bfe245853b2a90 (patch)
tree3fe64e8fa8ad1cf6586a23daa9b66d389b1fdba4 /Include
parent419f1fa9bcd05167c91479348f9c8403d1c77cab (diff)
downloadcpython3-1a2cf9aba786516a85bbb58285bfe245853b2a90.tar.gz
remove tab (closes #21587)
Diffstat (limited to 'Include')
-rw-r--r--Include/listobject.h2
1 files changed, 1 insertions, 1 deletions
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);