(self)
| 1342 | # Pickle support. |
| 1343 | |
| 1344 | def __reduce__(self): |
| 1345 | getinitargs = getattr(self, "__getinitargs__", None) |
| 1346 | if getinitargs: |
| 1347 | args = getinitargs() |
| 1348 | else: |
| 1349 | args = () |
| 1350 | return (self.__class__, args, self.__getstate__()) |
| 1351 | |
| 1352 | |
| 1353 | class IsoCalendarDate(tuple): |
nothing calls this directly
no test coverage detected