Home | Trees | Index | Help |
|
---|
Module types :: Class instancemethod |
|
object
--+
|
instancemethod
instancemethod(function, instance, class)
Create an instance method object.Method Summary | |
---|---|
x.__call__(...) <==> x(...) | |
x.__cmp__(y) <==> cmp(x,y) | |
x.__delattr__('name') <==> del x.name | |
descr.__get__(obj[, type]) -> value | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
Inherited from object | |
x.__init__(...) initializes x; see x.__class__.__doc__ for signature | |
helper for pickle | |
helper for pickle | |
x.__str__() <==> str(x) |
Class Variable Summary | |
---|---|
member_descriptor |
im_class = <member 'im_class' of 'instancemethod' object...
|
member_descriptor |
im_func = <member 'im_func' of 'instancemethod' objects>
|
member_descriptor |
im_self = <member 'im_self' of 'instancemethod' objects>
|
Method Details |
---|
__call__(x,
...)
x.__call__(...) <==> x(...)
|
__cmp__(x,
y)
x.__cmp__(y) <==> cmp(x,y)
|
__delattr__(...)x.__delattr__('name') <==> del x.name
|
__get__(descr, obj, type=...)descr.__get__(obj[, type]) -> value
|
__getattribute__(...)x.__getattribute__('name') <==> x.name
|
__hash__(x)
x.__hash__() <==> hash(x)
|
__new__(T, S, ...)T.__new__(S, ...) -> a new object with type S, a subtype of T
|
__repr__(x)
x.__repr__() <==> repr(x)
|
__setattr__(...)x.__setattr__('name', value) <==> x.name = value
|
Class Variable Details |
---|
im_class
|
im_func
|
im_self
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Mon Dec 18 15:25:58 2006 | http://epydoc.sf.net |