From: Amaury Forgeot d'Arc Date: Sun, 3 Feb 2008 23:14:32 +0000 (+0000) Subject: Nasty typo in setobject.h X-Git-Tag: v2.6a1~281 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=58e185a33b8dbfa4671adc99a8c6a6fd44515a71;p=python Nasty typo in setobject.h --- diff --git a/Include/setobject.h b/Include/setobject.h index 102796d315..92adf52c58 100644 --- a/Include/setobject.h +++ b/Include/setobject.h @@ -77,7 +77,7 @@ PyAPI_DATA(PyTypeObject) PyFrozenSet_Type; (Py_TYPE(ob) == &PySet_Type || \ PyType_IsSubtype(Py_TYPE(ob), &PySet_Type)) #define PyFrozenSet_Check(ob) \ - (Py_TYPE(ob) == &PyFrozenSet_Type || \\ + (Py_TYPE(ob) == &PyFrozenSet_Type || \ PyType_IsSubtype(Py_TYPE(ob), &PyFrozenSet_Type)) PyAPI_FUNC(PyObject *) PySet_New(PyObject *);