| 4377 | cls = self.theclass |
| 4378 | # A datetime passes itself on, a time passes None. |
| 4379 | class introspective(tzinfo): |
| 4380 | def tzname(self, dt): return dt and "real" or "none" |
| 4381 | def utcoffset(self, dt): |
| 4382 | return timedelta(minutes = dt and 42 or -42) |
| 4383 | dst = utcoffset |
| 4384 | |
| 4385 | obj = cls(1, 2, 3, tzinfo=introspective()) |
| 4386 |
no outgoing calls
searching dependent graphs…