Lines Matching refs:frozenset
13 object: frozenset
15 This section details the public API for :class:`set` and :class:`frozenset`
30 :class:`set` and :class:`frozenset` objects. It is like a :c:type:`PyDictObject`
47 :class:`frozenset` type.
59 Return true if *p* is a :class:`frozenset` object or an instance of a
64 Return true if *p* is a :class:`set` object, a :class:`frozenset` object, or an
70 Return true if *p* is a :class:`set` object or a :class:`frozenset` object but
76 Return true if *p* is a :class:`frozenset` object but not an instance of a
91 Return a new :class:`frozenset` containing objects returned by the *iterable*.
92 The *iterable* may be *NULL* to create a new empty frozenset. Return the new
98 or :class:`frozenset` or instances of their subtypes.
105 Return the length of a :class:`set` or :class:`frozenset` object. Equivalent to
107 :class:`set`, :class:`frozenset`, or an instance of a subtype.
121 :class:`set`, :class:`frozenset`, or an instance of a subtype.
126 Add *key* to a :class:`set` instance. Also works with :class:`frozenset`
136 subtypes but not for instances of :class:`frozenset` or its subtypes.