Home | History | Annotate | Download | only in python2.7

Lines Matching refs:strict

327     # strict: If true, raise BadStatusLine if the status line can't be
335 def __init__(self, sock, debuglevel=0, strict=0, method=None, buffering=False):
348 self.strict = strict
385 if self.strict:
689 strict = 0
691 def __init__(self, host, port=None, strict=None,
705 if strict is not None:
706 self.strict = strict
750 response = self.response_class(self.sock, strict = self.strict,
1036 kwds = {"strict":self.strict, "method":self._method}
1069 def __init__(self, host='', port=None, strict=None):
1079 self._setup(self._connection_class(host, port, strict))
1161 strict=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
1163 HTTPConnection.__init__(self, host, port, strict, timeout,
1191 strict=None):
1198 cert_file, strict))