aboutsummaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-05-26 15:12:43 -0700
committerBenjamin Peterson <benjamin@python.org>2014-05-26 15:12:43 -0700
commitc12318a7fd49b2a6f2f8f42b631550bc022da32c (patch)
treee6bfe6470c27d490f3ce3715aa09b475946b6329 /Include
parent3ecb1928cb3a46c6cb050ea5bb5b3c1a9b263a3d (diff)
parent1a2cf9aba786516a85bbb58285bfe245853b2a90 (diff)
downloadcpython3-c12318a7fd49b2a6f2f8f42b631550bc022da32c.tar.gz
merge 3.4 (#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);