types :: BuiltinMethodType :: Class BuiltinMethodType
[hide private]
[frames] | no frames]

Class BuiltinMethodType

object --+
         |
        types.BuiltinMethodType

Instance Methods [hide private]
 
__call__(x, ...)
x(...)
 
__cmp__(x, y)
cmp(x,y)
 
__eq__(x, y)
x==y
 
__ge__(x, y)
x>=y
 
__getattribute__(...)
x.__getattribute__('name') <==> x.name
 
__gt__(x, y)
x>y
 
__hash__(x)
hash(x)
 
__le__(x, y)
x<=y
 
__lt__(x, y)
x<y
 
__ne__(x, y)
x!=y
 
__repr__(x)
repr(x)

Inherited from object: __delattr__, __format__, __init__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]
  __name__
  __self__
  __signature__

Inherited from object: __class__

Method Details [hide private]

__getattribute__(...)

 

x.__getattribute__('name') <==> x.name

Overrides: object.__getattribute__

__hash__(x)
(Hashing function)

 

hash(x)

Overrides: object.__hash__

__repr__(x)
(Representation operator)

 

repr(x)

Overrides: object.__repr__