| Trees | Indices | Help | 
 | 
|---|
|  | 
object --+        
         |        
      dict --+    
             |    
     IndexDict --+
                 |
                TupleDict
A dictionary class that has a tuple as its key. The key will be reordered before accessing or retrieving the object. Note that the built-in __init__ doesn't call update, and the built-in update doesn't call __setitem__. Have to call __setitem__ explicitly to make sure all setitem operations to go through our own implementation.
| 
 | |||
| new empty dictionary | 
 | ||
| 
 | |||
| 
 | |||
| 
 | |||
| 
 | |||
| 
 | |||
| Inherited from  Inherited from  Inherited from  | |||
| 
 | |||
| Inherited from  | |||
| 
 | |||
| 
 | |||
| 
 x.__init__(...) initializes x; see help(type(x)) for signature 
 | 
| 
 
 | 
| 
 
 | 
| 
 x[y] 
 | 
| 
 x[i]=y 
 | 
| Trees | Indices | Help | 
 | 
|---|
| Generated by Epydoc 3.0.1 on Wed Aug 3 07:59:34 2016 | http://epydoc.sourceforge.net |