Get the inc portion of this :class:`Timestamp`.
(self)
| 76 | |
| 77 | @property |
| 78 | def inc(self) -> int: |
| 79 | """Get the inc portion of this :class:`Timestamp`.""" |
| 80 | return self.__inc |
| 81 | |
| 82 | def __eq__(self, other: Any) -> bool: |
| 83 | if isinstance(other, Timestamp): |