Package pygeodesy :: Module units :: Class Str
[frames] | no frames]

Class Str

  object --+        
           |        
  basestring --+    
               |    
             str --+
                   |
  object --+       |
           |       |
named._Named --+   |
               |   |
      _NamedUnit --+
                   |
                  Str
Known Subclasses:

Named str.

Instance Methods
 
__repr__(self)
Return a representation of this Str.
 
__str__(self)
Return this Str as standard str.
 
toRepr(self, std=False, **unused)
Return the named representation of this Str.
 
toStr(self, **unused)
Return this Str as str.

Inherited from str: __add__, __contains__, __eq__, __format__, __ge__, __getattribute__, __getitem__, __getnewargs__, __getslice__, __gt__, __hash__, __le__, __len__, __lt__, __mod__, __mul__, __ne__, __rmod__, __rmul__, __sizeof__, 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 named._Named: _DOT_, attrs, classof, copy, dup, rename, toStr2

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

Static Methods
a new object with type S, a subtype of T
__new__(cls, arg=None, name='', Error=<class 'pygeodesy.errors.UnitError'>, **name_arg)
New named str instance.
Properties

Inherited from _NamedUnit: std_repr, units

Inherited from named._Named: classname, classnaming, name, named, named2, named3, named4

Inherited from object: __class__

Method Details

__new__ (cls, arg=None, name='', Error=<class 'pygeodesy.errors.UnitError'>, **name_arg)
Static Method

 

New named str instance.

Arguments:
  • cls - This class (Str or sub-class).
  • arg - The value (any type convertable to str).
  • name - Optional instance name (str).
  • Error - Optional error to raise, overriding the default (ValueError).
  • name_arg - Optional name=arg keyword argument, inlieu of name and arg.
Returns: a new object with type S, a subtype of T
A Str instance.
Raises:
  • Error - Invalid arg.
Overrides: object.__new__

__repr__ (self)
(Representation operator)

 

Return a representation of this Str.

Overrides: object.__repr__

See Also: Method Str.toRepr and property Str.std_repr.

Note: Use env variable PYGEODESY_STR_STD_REPR=std prior to import pygeodesy to get the standard repr or set property std_repr=False to always get the named toRepr representation.

__str__ (self)
(Informal representation operator)

 

Return this Str as standard str.

Overrides: object.__str__

toRepr (self, std=False, **unused)

 

Return the named representation of this Str.

Arguments:
  • std - Use the standard repr or the named representation (bool).
Overrides: named._Named.toRepr

toStr (self, **unused)

 

Return this Str as str.

Overrides: named._Named.toStr