A base class for objects which have a set of flags that can be
set.
You should never be instantiating this class directly - it only exists
for other classes to inherit from.
|
|
|
|
|
|
|
a new object with type S, a subtype of T
|
|
|
|
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value |
|
|
|
bool
|
getFlag(flag)
Gets the specified flag. |
|
|
|
None
|
setFlag(flag,
value)
Set or clear the specified flag. |
|
|
|
Inherited from object:
__format__,
__hash__,
__init__,
__reduce__,
__reduce_ex__,
__repr__,
__sizeof__,
__str__,
__subclasshook__
|