Commit 3aa42b4d authored by Michael Seifert's avatar Michael Seifert

Include PySet_Check and PyFrozenSet_Check to CPython includes file

parent 00305bd3
......@@ -44,9 +44,15 @@ cdef extern from "Python.h":
# Return true if p is a set object or a frozenset object but not
# an instance of a subtype.
bint PyFrozenSet_Check(object p)
# Return true if p is a frozenset object or an instance of a subtype.
bint PyFrozenSet_CheckExact(object p)
# Return true if p is a frozenset object but not an instance of a subtype.
bint PySet_Check(object p)
# Return true if p is a set object or an instance of a subtype.
object PySet_New(object iterable)
# Return value: New reference.
# Return a new set containing objects returned by the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment