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

Class UnboundMethodType

object --+
         |
        types.UnboundMethodType

instancemethod(function, instance, class)

Create an instance method object.

Instance Methods [hide private]
 
__call__(x, ...)
x(...)
 
__cmp__(x, y)
cmp(x,y)
 
__delattr__(...)
x.__delattr__('name') <==> del x.name
value
__get__(descr, obj, type=...)
 
__getattribute__(...)
x.__getattribute__('name') <==> x.name
 
__hash__(x)
hash(x)
a new object with type S, a subtype of T
__new__(T, S, ...)
 
__repr__(x)
repr(x)
 
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value

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

Properties [hide private]
  __func__
the function (or other callable) implementing a method
  __self__
the instance to which a method is bound; None for unbound methods
  im_class
the class associated with a method
  im_func
the function (or other callable) implementing a method
  im_self
the instance to which a method is bound; None for unbound methods

Inherited from object: __class__

Method Details [hide private]

__delattr__(...)

 

x.__delattr__('name') <==> del x.name

Overrides: object.__delattr__

__getattribute__(...)

 

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

Overrides: object.__getattribute__

__hash__(x)
(Hashing function)

 

hash(x)

Overrides: object.__hash__

__new__(T, S, ...)

 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__

__repr__(x)
(Representation operator)

 

repr(x)

Overrides: object.__repr__

__setattr__(...)

 

x.__setattr__('name', value) <==> x.name = value

Overrides: object.__setattr__