Package dbf :: Module ver_2 :: Class Char
[hide private]
[frames] | no frames]

Class Char

source code

object --+        
         |        
basestring --+    
             |    
       unicode --+
                 |
                Char

Strips trailing whitespace, and ignores trailing whitespace for comparisons

Instance Methods [hide private]
 
__hash__(x)
hash(x)
source code
 
__eq__(self, other)
ignores trailing whitespace
source code
 
__ge__(self, other)
ignores trailing whitespace
source code
 
__gt__(self, other)
ignores trailing whitespace
source code
 
__le__(self, other)
ignores trailing whitespace
source code
 
__lt__(self, other)
ignores trailing whitespace
source code
 
__ne__(self, other)
ignores trailing whitespace
source code
 
__nonzero__(self)
ignores trailing whitespace
source code
 
__add__(self, other)
x+y
source code

Inherited from unicode: __contains__, __format__, __getattribute__, __getitem__, __getnewargs__, __getslice__, __len__, __mod__, __mul__, __repr__, __rmod__, __rmul__, __sizeof__, __str__, capitalize, center, count, decode, encode, endswith, expandtabs, find, format, index, isalnum, isalpha, isdecimal, isdigit, islower, isnumeric, isspace, istitle, isupper, join, ljust, lower, lstrip, partition, replace, rfind, rindex, rjust, rpartition, rsplit, rstrip, split, splitlines, startswith, strip, swapcase, title, translate, upper, zfill

Inherited from unicode (private): _formatter_field_name_split, _formatter_parser

Inherited from object: __delattr__, __init__, __reduce__, __reduce_ex__, __setattr__, __subclasshook__

Static Methods [hide private]
a new object with type S, a subtype of T
__new__(cls, text='') source code
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__new__(cls, text='')
Static Method

source code 
Returns: a new object with type S, a subtype of T
Overrides: object.__new__
(inherited documentation)

__hash__(x)
(Hashing function)

source code 

hash(x)

Overrides: object.__hash__

__eq__(self, other)
(Equality operator)

source code 

ignores trailing whitespace

Overrides: unicode.__eq__

__ge__(self, other)
(Greater-than-or-equals operator)

source code 

ignores trailing whitespace

Overrides: unicode.__ge__

__gt__(self, other)
(Greater-than operator)

source code 

ignores trailing whitespace

Overrides: unicode.__gt__

__le__(self, other)
(Less-than-or-equals operator)

source code 

ignores trailing whitespace

Overrides: unicode.__le__

__lt__(self, other)
(Less-than operator)

source code 

ignores trailing whitespace

Overrides: unicode.__lt__

__ne__(self, other)

source code 

ignores trailing whitespace

Overrides: unicode.__ne__

__add__(self, other)
(Addition operator)

source code 

x+y

Overrides: unicode.__add__
(inherited documentation)