| Home | Trees | Index | Help | 
|---|
| 
       | 
  
    
  | 
|||
| 
    __delattr__(...)
     x.__delattr__('name') <==> del x.name  | 
|||
| 
    __getattribute__(...)
     x.__getattribute__('name') <==> x.name  | 
|||
| 
    __hash__(x)
     hash(x)  | 
|||
| 
    __init__(...)
     x.__init__(...) initializes x; see x.__class__.__doc__ for signature  | 
|||
| __new__(T, S, ...) | |||
| 
    __reduce__(...)
     helper for pickle  | 
|||
| 
    __reduce_ex__(...)
     helper for pickle  | 
|||
| 
    __repr__(x)
     repr(x)  | 
|||
| 
    __setattr__(...)
     x.__setattr__('name', value) <==> x.name = value  | 
|||
| 
    __str__(x)
     str(x)  | 
|||
    
  | 
|||
| __class__ | |||
    
  | 
|||
  
  | 
  
  | 
  
  | 
  
  | 
  
 
  | 
  
  | 
  
  | 
  
  | 
  
  | 
  
  | 
    
  | 
|||
  __class__
  | 
| Home | Trees | Index | Help | 
|---|
| Generated by Epydoc 3.0alpha2 on Sun Jun 11 16:26:29 2006 | http://epydoc.sf.net |