(self, unit, axis)
| 1799 | super().__init__() |
| 1800 | |
| 1801 | def axisinfo(self, unit, axis): |
| 1802 | # docstring inherited |
| 1803 | tz = unit |
| 1804 | majloc = AutoDateLocator(tz=tz, |
| 1805 | interval_multiples=self._interval_multiples) |
| 1806 | majfmt = ConciseDateFormatter(majloc, tz=tz, formats=self._formats, |
| 1807 | zero_formats=self._zero_formats, |
| 1808 | offset_formats=self._offset_formats, |
| 1809 | show_offset=self._show_offset) |
| 1810 | datemin = datetime.date(1970, 1, 1) |
| 1811 | datemax = datetime.date(1970, 1, 2) |
| 1812 | return units.AxisInfo(majloc=majloc, majfmt=majfmt, label='', |
| 1813 | default_limits=(datemin, datemax)) |
| 1814 | |
| 1815 | |
| 1816 | class _SwitchableDateConverter: |
nothing calls this directly
no test coverage detected