Package logilab :: Package common :: Module compat :: Class frozenset
[frames] | no frames]

Class frozenset

source code

object --+    
         |    
     ??-34 --+
             |
            frozenset

immutable set (can be set in dictionaries)

Instance Methods
 
__init__(self, values=())
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__hash__(self)
taken from python stdlib (sets.py)
source code

Inherited from unreachable: __add__, __and__, __cmp__, __iter__, __len__, __or__, __repr__, __str__, __sub__

Inherited from object: __delattr__, __getattribute__, __new__, __reduce__, __reduce_ex__, __setattr__

Properties

Inherited from object: __class__

Method Details

__init__(self, values=())
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)

__hash__(self)
(Hashing function)

source code 
taken from python stdlib (sets.py)

Overrides: object.__hash__