Lines Matching refs:frozenset
13 object: frozenset
17 This section details the public API for :class:`set` and :class:`frozenset`
32 :class:`set` and :class:`frozenset` objects. It is like a :c:type:`PyDictObject`
49 :class:`frozenset` type.
63 Return true if *p* is a :class:`frozenset` object or an instance of a
70 Return true if *p* is a :class:`set` object, a :class:`frozenset` object, or an
76 Return true if *p* is a :class:`set` object or a :class:`frozenset` object but
82 Return true if *p* is a :class:`frozenset` object but not an instance of a
97 Return a new :class:`frozenset` containing objects returned by the *iterable*.
98 The *iterable* may be *NULL* to create a new empty frozenset. Return the new
103 Now guaranteed to return a brand-new :class:`frozenset`. Formerly,
108 or :class:`frozenset` or instances of their subtypes.
115 Return the length of a :class:`set` or :class:`frozenset` object. Equivalent to
117 :class:`set`, :class:`frozenset`, or an instance of a subtype.
135 :class:`set`, :class:`frozenset`, or an instance of a subtype.
140 Add *key* to a :class:`set` instance. Does not apply to :class:`frozenset`
147 Now works with instances of :class:`frozenset` or its subtypes.
152 subtypes but not for instances of :class:`frozenset` or its subtypes.