Home | History | Annotate | Download | only in email

Lines Matching refs:missing

183         some other encoding is used, or the header is missing, or if the
290 Return None if the header is missing instead of raising an exception.
309 Does not raise an exception if the header is missing.
323 missing = object()
324 return self.get(name, missing) is not missing
360 is missing.
447 missing = object()
448 value = self.get('content-type', missing)
449 if value is missing:
497 missing = object()
498 value = self.get(header, missing)
499 if value is missing:
528 missing = object()
529 params = self._get_params_preserve(missing, header)
530 if params is missing:
679 `filename' parameter, and it is unquoted. If that header is missing
683 missing = object()
684 filename = self.get_param('filename', missing, 'content-disposition')
685 if filename is missing:
686 filename = self.get_param('name', missing, 'content-type')
687 if filename is missing:
697 missing = object()
698 boundary = self.get_param('boundary', missing)
699 if boundary is missing:
714 missing = object()
715 params = self._get_params_preserve(missing, 'content-type')
716 if params is missing:
756 missing = object()
757 charset = self.get_param('charset', missing)
758 if charset is missing: