| Trees | Index | Help |
|
|---|
| Module types :: Class classobj |
|
object --+
|
classobj
classobj(name, bases, dict)
Create a class object. The name must be a string; the second argument a tuple of classes, and the third a dictionary.| Method Summary | |
|---|---|
x.__call__(...) <==> x(...) | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
x.__repr__() <==> repr(x) | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) | |
| Inherited from object | |
x.__init__(...) initializes x; see x.__class__.__doc__ for signature | |
x.__hash__() <==> hash(x) | |
helper for pickle | |
helper for pickle | |
| Method Details |
|---|
__call__(x,
...)
x.__call__(...) <==> x(...)
|
__delattr__(...)x.__delattr__('name') <==> del x.name
|
__getattribute__(...)x.__getattribute__('name') <==> x.name
|
__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
|
__str__(x)
x.__str__() <==> str(x)
|
| Trees | Index | Help |
|
|---|
| Generated by Epydoc 2.1 on Fri Jun 24 12:01:23 2005 | http://epydoc.sf.net |