(self, i)
| 102 | self.format = format |
| 103 | |
| 104 | def __getitem__(self, i): |
| 105 | funcs = self._months[i] |
| 106 | if isinstance(i, slice): |
| 107 | return [f(self.format) for f in funcs] |
| 108 | else: |
| 109 | return funcs(self.format) |
| 110 | |
| 111 | def __len__(self): |
| 112 | return 13 |
nothing calls this directly
no test coverage detected