Lines Matching defs:MISSING
21 'MISSING',
187 MISSING = _MISSING_TYPE()
368 def field(*, default=MISSING, default_factory=MISSING, init=True, repr=True,
369 hash=None, compare=True, metadata=None, kw_only=MISSING):
386 if default is not MISSING and default_factory is not MISSING:
414 return_type=MISSING):
421 if return_type is not MISSING:
454 if f.default_factory is not MISSING:
482 if f.default is MISSING:
485 elif f.default is not MISSING:
490 if slots and f.default is not MISSING:
514 if f.default is MISSING and f.default_factory is MISSING:
518 elif f.default is not MISSING:
522 elif f.default_factory is not MISSING:
542 if not (f.default is MISSING and f.default_factory is MISSING):
550 'MISSING': MISSING,
731 default = getattr(cls, a_name, MISSING)
737 default = MISSING
789 if f.default_factory is not MISSING:
802 if f.kw_only is MISSING:
807 if f.kw_only is not MISSING:
968 if f.default is MISSING:
1005 class_hash = cls.__dict__.get('__hash__', MISSING)
1006 has_explicit_hash = not (class_hash is MISSING or
1491 if f._field_type is _FIELD_INITVAR and f.default is MISSING: