obspy.io.sac.sactrace.StringHeader
Special Methods
- StringHeader.__delattr__(name, /)
Implement delattr(self, name).
- StringHeader.__dir__()
Default dir() implementation.
- StringHeader.__eq__(value, /)
Return self==value.
- StringHeader.__format__(format_spec, /)
Default object formatter.
- StringHeader.__ge__(value, /)
Return self>=value.
- StringHeader.__getattribute__(name, /)
Return getattr(self, name).
- StringHeader.__gt__(value, /)
Return self>value.
- StringHeader.__hash__()
Return hash(self).
- StringHeader.__init__(name)
- StringHeader.__init_subclass__()
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- StringHeader.__le__(value, /)
Return self<=value.
- StringHeader.__lt__(value, /)
Return self<value.
- StringHeader.__ne__(value, /)
Return self!=value.
- StringHeader.__new__(**kwargs)
- StringHeader.__reduce__()
Helper for pickle.
- StringHeader.__reduce_ex__(protocol, /)
Helper for pickle.
- StringHeader.__repr__()
Return repr(self).
- StringHeader.__setattr__(name, value, /)
Implement setattr(self, name, value).
- StringHeader.__sizeof__()
Size of object in memory, in bytes.
- StringHeader.__str__()
Return str(self).
- StringHeader.__subclasshook__()
Abstract classes can override this to customize issubclass().
This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).