| Home | Trees | Index | Help |
|---|
| Package svnmailer :: Package settings :: Module _typedstruct :: Class Member |
|
object --+
|
Member
BaseMember| Method Summary | |
|---|---|
Initialization | |
Custom initialization | |
| any |
Postmapper - passes through by default |
| any |
Premapper - passes through by default |
| any |
Substituter - passes through by default |
| any |
Transformer - passes through by default |
| Inherited from object | |
x.__delattr__('name') <==> del x.name... | |
x.__getattribute__('name') <==> x.name... | |
x.__hash__() <==> hash(x)... | |
helper for pickle... | |
helper for pickle... | |
x.__repr__() <==> repr(x)... | |
x.__setattr__('name', value) <==> x.name = value... | |
x.__str__() <==> str(x)... | |
| Inherited from type | |
T.__new__(S, ...) -> a new object with type S, a subtype of T... | |
| Instance Variable Summary | |
|---|---|
| any | arg: The custom initialization argument |
Struct |
instance: The owner instance |
| callable | mapper: The associated mapper function (or None) |
| any | param: The descriptor parameter |
| Method Details |
|---|
__init__(self,
mapper,
arg,
param)
Initialization |
init(self)Custom initialization |
postmap(self, value)Postmapper - passes through by default The postmapper is called before the value is finally returned to the caller (after being substituted).
|
premap(self, value)Premapper - passes through by default The premapper is called if the value is set before doing anything else.
|
substitute(self, value, subst)Substituter - passes through by default Use this method to do any dynamic processing on
the retrieved value before it's being
|
transform(self, value)Transformer - passes through by default Override this method in order to do any value transformation, e.g. compile the input string as regex or split it into a list. The
|
| Instance Variable Details |
|---|
argThe custom initialization argument
|
instanceThe owner instance
|
mapperThe associated mapper function (or None)
|
paramThe descriptor parameter
|
| Home | Trees | Index | Help |
|---|
| Generated by Epydoc 2.0 on Sun Sep 25 20:49:12 2005 | http://epydoc.sf.net |