MCPcopy
hub / github.com/django/django / __init__

Method __init__

django/forms/fields.py:463–466  ·  view source on GitHub ↗
(self, *, input_formats=None, **kwargs)

Source from the content-addressed store, hash-verified

461
462class BaseTemporalField(Field):
463 def __init__(self, *, input_formats=None, **kwargs):
464 super().__init__(**kwargs)
465 if input_formats is not None:
466 self.input_formats = input_formats
467
468 def to_python(self, value):
469 value = value.strip()

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected