Lines Matching refs:MISSING
65 f"default=1,default_factory={MISSING!r}," \
68 f"kw_only={MISSING!r}," \
848 # Don't test for the default, since it's set to MISSING.
853 # Don't test for the default, since it's set to MISSING.
880 # Test that MISSING works the same as a default not being
884 x: int=field(default=MISSING)
901 # Test that MISSING works the same as a default factory not
906 x: int=field(default_factory=MISSING)
915 x: int=field(default=MISSING, default_factory=MISSING)
923 self.assertIn('MISSING_TYPE object', repr(MISSING))