dns :: wiredata :: WireData :: Class WireData
[hide private]
[frames] | no frames]

Class WireData

source code

object --+        
         |        
basestring --+    
             |    
           str --+
                 |
                WireData

Instance Methods [hide private]
 
__getitem__(self, key)
x[y]
source code
 
__getslice__(self, i, j)
x[i:j]
source code
 
__iter__(self) source code
 
unwrap(self) source code

Inherited from str: __add__, __contains__, __eq__, __format__, __ge__, __getattribute__, __getnewargs__, __gt__, __hash__, __le__, __len__, __lt__, __mod__, __mul__, __ne__, __new__, __repr__, __rmod__, __rmul__, __sizeof__, __str__, capitalize, center, count, decode, encode, endswith, expandtabs, find, format, index, isalnum, isalpha, isdigit, islower, 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 str (private): _formatter_field_name_split, _formatter_parser

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

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__getitem__(self, key)
(Indexing operator)

source code 

x[y]

Overrides: str.__getitem__
(inherited documentation)

__getslice__(self, i, j)
(Slicling operator)

source code 

x[i:j]

Use of negative indices is not supported.

Overrides: str.__getslice__
(inherited documentation)