summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-02-03 23:14:32 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-02-03 23:14:32 (GMT)
commit58e185a33b8dbfa4671adc99a8c6a6fd44515a71 (patch)
treeb84545e25215fa93d4d59fdfa2bf059e1e131ca2 /Include
parentcab3d98ca19659698a29108aabb040f2741d1a2a (diff)
downloadcpython-58e185a33b8dbfa4671adc99a8c6a6fd44515a71.zip
cpython-58e185a33b8dbfa4671adc99a8c6a6fd44515a71.tar.gz
cpython-58e185a33b8dbfa4671adc99a8c6a6fd44515a71.tar.bz2
Nasty typo in setobject.h
Diffstat (limited to 'Include')
-rw-r--r--Include/setobject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/setobject.h b/Include/setobject.h
index 102796d..92adf52 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 *);