Package pygeodesy :: Module named :: Class _NamedBase
[frames] | no frames]

Class _NamedBase

object --+    
         |    
    _Named --+
             |
            _NamedBase
Known Subclasses:

(INTERNAL) Base class with name.

Instance Methods
 
__repr__(self)
Default repr(self).
 
__str__(self)
Default str(self).
 
others(self, other, name='other')
Check this and an other instance for type compatiblility.
 
toStr(self, **kwds)
(INTERNAL) Must be overloaded.
 
toStr2(self, **kwds)
(INTERNAL) To be overloaded.

Inherited from _Named: _dot_, attrs, classof, copy

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

Properties

Inherited from _Named: classname, classnaming, name, named, named2

Inherited from object: __class__

Method Details

__repr__ (self)
(Representation operator)

 

Default repr(self).

Overrides: object.__repr__
(inherited documentation)

__str__ (self)
(Informal representation operator)

 

Default str(self).

Overrides: object.__str__
(inherited documentation)

others (self, other, name='other')

 

Check this and an other instance for type compatiblility.

Arguments:
  • other - The other instance (any type).
  • name - Optional, name for other (str).
Returns:
None.
Raises:
  • TypeError - Mismatch of this and other type.

toStr (self, **kwds)

 

(INTERNAL) Must be overloaded.

Raises:
Overrides: _Named.toStr

toStr2 (self, **kwds)

 

(INTERNAL) To be overloaded.

Arguments:
  • kwds - Optional, keyword arguments.
Returns:
toStr() with keyword arguments (as str).
Overrides: _Named.toStr2