Package suds :: Package sax :: Module text :: Class Raw
[hide private]
[frames] | no frames]

Class Raw

source code

object --+            
         |            
basestring --+        
             |        
       unicode --+    
                 |    
              Text --+
                     |
                    Raw

Raw text which is not XML escaped. This may include string XML.

Instance Methods [hide private]
Text
escape(self)
Encode (escape) special XML characters.
source code
Text
unescape(self)
Decode (unescape) special XML characters.
source code
 
__add__(self, other)
x+y
source code

Inherited from Text: __getstate__, __repr__, __setstate__, trim

Inherited from unicode: __contains__, __eq__, __format__, __ge__, __getattribute__, __getitem__, __getnewargs__, __getslice__, __gt__, __hash__, __le__, __len__, __lt__, __mod__, __mul__, __ne__, __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]

Inherited from Text: __new__

Instance Variables [hide private]

Inherited from Text: escaped, lang

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

escape(self)

source code 

Encode (escape) special XML characters.

Returns: Text
The text with XML special characters escaped.
Overrides: Text.escape
(inherited documentation)

unescape(self)

source code 

Decode (unescape) special XML characters.

Returns: Text
The text with escaped XML special characters decoded.
Overrides: Text.unescape
(inherited documentation)

__add__(self, other)
(Addition operator)

source code 

x+y

Overrides: unicode.__add__
(inherited documentation)