Package svnmailer :: Module struct_accessors :: Class TokenDescriptor
[hide private]

Class TokenDescriptor

source code

                  object --+            
                           |            
typedstruct.MemberDescriptor --+        
                               |        
                  BaseDescriptor --+    
                                   |    
                BasePremapDescriptor --+
                                       |
                                      TokenDescriptor

Unicode token storage

Instance Methods [hide private]
 
__init__(self, name, private, param=None)
Initialization
source code
any
doTransform(self, value, arg)
Transforms the value to unicode if it wasn't already
source code

Inherited from BasePremapDescriptor: doPostmap, doPremap

Inherited from BaseDescriptor: doSubstitute, getCharset, getFileCharset, postmap, premap, substitute, transform

Inherited from typedstruct.MemberDescriptor: __delete__, __get__, __set__

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Instance Variables [hide private]

Inherited from typedstruct.MemberDescriptor: name, param

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, name, private, param=None)
(Constructor)

source code 

Initialization

Overrides: object.__init__

doTransform(self, value, arg)

source code 

Transforms the value to unicode if it wasn't already

Parameters:
  • value - The value to tranform
  • arg - The argument used for struct initialization
Returns: any
The transformed value
Raises:
  • TypeError - The supplied value is neither str nor unicode
  • UnicodeError - The supplied value is a string and cannot be interpreted as the specified charset
  • ValueError - The supplied value is not allowed
Overrides: BaseDescriptor.doTransform