]> granicus.if.org Git - python/commitdiff
Nasty typo in setobject.h
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>
Sun, 3 Feb 2008 23:14:32 +0000 (23:14 +0000)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>
Sun, 3 Feb 2008 23:14:32 +0000 (23:14 +0000)
Include/setobject.h

index 102796d315f833d84c31d2fa1803ed2c6690169b..92adf52c581ac7f2ae7610485b92f112265c864d 100644 (file)
@@ -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 *);