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

Method __init__

django/forms/fields.py:653–656  ·  view source on GitHub ↗
(self, *, max_length=None, allow_empty_file=False, **kwargs)

Source from the content-addressed store, hash-verified

651 }
652
653 def __init__(self, *, max_length=None, allow_empty_file=False, **kwargs):
654 self.max_length = max_length
655 self.allow_empty_file = allow_empty_file
656 super().__init__(**kwargs)
657
658 def to_python(self, data):
659 if data in self.empty_values:

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected