MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / __call__

Method __call__

lib/matplotlib/dates.py:1147–1154  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1145 self.rule = o
1146
1147 def __call__(self):
1148 # if no data have been set, this will tank with a ValueError
1149 try:
1150 dmin, dmax = self.viewlim_to_dt()
1151 except ValueError:
1152 return []
1153
1154 return self.tick_values(dmin, dmax)
1155
1156 def tick_values(self, vmin, vmax):
1157 start, stop = self._create_rrule(vmin, vmax)

Callers

nothing calls this directly

Calls 2

tick_valuesMethod · 0.95
viewlim_to_dtMethod · 0.80

Tested by

no test coverage detected