Package gluon :: Module validators :: Class IS_LOWER
[hide private]
[frames] | no frames]

Class IS_LOWER

source code

object --+    
         |    
 Validator --+
             |
            IS_LOWER

convert to lower case

>>> IS_LOWER()('ABC')
('abc', None)
>>> IS_LOWER()('Ñ')
('\xc3\xb1', None)
Instance Methods [hide private]
 
__call__(self, value) source code

Inherited from Validator: formatter

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__call__(self, value)
(Call operator)

source code 
Overrides: Validator.__call__