def others(self, other, name='other'): '''Refine the class comparison. @param other: The other point (C{LatLon}). @keyword name: Optional, other's name (C{str}). @raise TypeError: Incompatible B{C{other}} C{type}. ''' try: LatLonHeightBase.others(self, other, name=name) except TypeError: if not isinstance(other, Nvector): raise
def others(self, other, name='other'): '''Refine class comparison. @param other: The other point (L{LatLon}). @keyword name: Other's name (string). @raise TypeError: Incompatible type(other). ''' try: LatLonHeightBase.others(self, other, name=name) except TypeError: if not isinstance(other, Nvector): raise