| 346 | |
| 347 | |
| 348 | class Trunc(TruncBase): |
| 349 | def __init__( |
| 350 | self, |
| 351 | expression, |
| 352 | kind, |
| 353 | output_field=None, |
| 354 | tzinfo=None, |
| 355 | **extra, |
| 356 | ): |
| 357 | self.kind = kind |
| 358 | super().__init__(expression, output_field=output_field, tzinfo=tzinfo, **extra) |
| 359 | |
| 360 | |
| 361 | class TruncYear(TruncBase): |
no outgoing calls