Lines Matching refs:status
82 # HTTPMessage, parse_headers(), and the HTTP status code constants are
107 # Mapping status codes to official W3C names
245 # text following RFC 2047. The basic status line parsing only
270 self.status = _UNKNOWN # Status-Code
281 raise LineTooLong("status line")
290 version, status, reason = line.split(None, 2)
293 version, status = line.split(None, 1)
302 # The status code is a three-digit number
304 status = int(status)
305 if status < 100 or status > 999:
309 return version, status, reason
318 version, status, reason = self._read_status()
319 if status != CONTINUE:
327 self.code = self.status = status
370 if (status == NO_CONTENT or status == NOT_MODIFIED or
371 100 <= status < 200 or # 1xx codes
784 '''Return the HTTP status code that was sent with the response,
788 return self.status
1365 # isclosed() status to become true.