| Home | Trees | Index | Help |
|
|---|
| Module exceptions :: Class BaseException |
|
object --+
|
BaseException
ExceptionCommon base class for all exceptions
| Method Summary | |
|---|---|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
__getitem__(x,
y)
Return x[y]... | |
Use of negative indices is not supported. | |
__new__(T,
S,
...)
Return a new object with type S, a subtype of T... | |
__reduce__(...)
| |
__repr__(x)
Return repr(x)... | |
x.__setattr__('name', value) <==> x.name = value | |
__setstate__(...)
| |
__str__(x)
Return str(x)... | |
| Class Variable Summary | |
|---|---|
getset_descriptor |
args = <attribute 'args' of 'exceptions.BaseException' o...
|
member_descriptor |
message = <member 'message' of 'exceptions.BaseException...
|
| Method Details |
|---|
__init__(...)
|
__delattr__(...)x.__delattr__('name') <==> del x.name
|
__getattribute__(...)x.__getattribute__('name') <==> x.name
|
__getslice__(x,
i,
j)
|
__setattr__(...)x.__setattr__('name', value) <==> x.name = value
|
| Class Variable Details |
|---|
args
|
message
|
| Home | Trees | Index | Help |
|
|---|
| Generated by Epydoc 2.1.20050511.rpd on Wed Nov 28 16:10:53 2007 | http://epydoc.sf.net |