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

Class RegexDescriptor

source code

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

Regex storage

Instance Methods [hide private]
 
__init__(self, name, private, param=None)
Initialization
source code
any
doTransform(self, value, arg)
Turns into a regex
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]
int FLAGS
The flags for the regex compiler

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 

Turns into a regex

Parameters:
  • value - The value to tranform
  • arg - The argument used for struct initialization
Returns: any
The transformed value
Raises:
  • TypeError - Invalid type of value or the flags are broken
  • ValueError - The regex could not be compiled
  • UnicodeError - The supplied value was a string and could not be converted to unicode
Overrides: BaseDescriptor.doTransform