HomeSort by relevance Sort by last modified time
    Searched refs:SSLError (Results 1 - 25 of 29) sorted by null

1 2

  /external/python/httplib2/python2/
ssl_protocol_test.py 19 ssl.SSLError, http.request, "https://www.google.com/", "GET"
  /external/python/httplib2/tests/
test_external.py 66 # Test that we get an ssl.SSLError when specifying a non-existent CA
91 with tests.assert_raises(ssl.SSLError):
  /external/python/cpython2/Lib/test/
test_ssl.py 145 except ssl.SSLError:
389 with self.assertRaises(ssl.SSLError):
770 with self.assertRaisesRegexp(ssl.SSLError, "No cipher can be selected"):
    [all...]
test_ftplib.py 292 except ssl.SSLError as err:
309 except ssl.SSLError as err:
344 except ssl.SSLError as err:
354 except ssl.SSLError as err:
687 # "SSLError [SSL] shutdown while in init"
test_httplib.py 831 with self.assertRaises(ssl.SSLError) as exc_info:
    [all...]
test_poplib.py 261 except ssl.SSLError, err:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_ssl.py 70 except ssl.SSLError as e:
168 with self.assertRaisesRegexp(ssl.SSLError, "No cipher can be selected"):
212 except ssl.SSLError:
258 except ssl.SSLError as err:
304 except ssl.SSLError, err:
323 except ssl.SSLError:
403 except ssl.SSLError:
476 except ssl.SSLError:
568 except ssl.SSLError, err:
749 except ssl.SSLError, x:
    [all...]
test_ftplib.py 277 except ssl.SSLError, err:
294 except ssl.SSLError, err:
326 except ssl.SSLError, err:
336 except ssl.SSLError, err:
test_poplib.py 247 except ssl.SSLError, err:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ssl.py 13 SSLError -- exception raised for I/O errors
63 from _ssl import SSLError
152 except SSLError, x:
190 except SSLError, x:
socket.py 67 from _ssl import SSLError as sslerror
ftplib.py 756 all_errors = (Error, IOError, EOFError, ssl.SSLError)
    [all...]
  /external/python/cpython3/Lib/test/
test_ssl.py 204 except ssl.SSLError:
306 self.assertRaises(ssl.SSLError, ssl.RAND_bytes, 16)
569 with self.assertRaises(ssl.SSLError):
    [all...]
test_ftplib.py 328 except ssl.SSLError as err:
334 # TODO: SSLError does not expose alert information
348 except ssl.SSLError as err:
383 except ssl.SSLError as err:
393 except ssl.SSLError as err:
891 # "SSLError [SSL] shutdown while in init"
    [all...]
test_httplib.py     [all...]
test_poplib.py 173 except ssl.SSLError as err:
179 # TODO: SSLError does not expose alert information
  /external/python/cpython2/Lib/
ssl.py 12 SSLError -- exception raised for I/O errors
103 SSLError, SSLZeroReturnError, SSLWantReadError, SSLWantWriteError,
376 raise SSLError('NPN protocols must be 1 to 255 in length')
387 raise SSLError('ALPN protocols must be 1 to 255 in length')
661 except SSLError as x:
726 except SSLError as x:
    [all...]
socket.py 67 from _ssl import SSLError as sslerror
ftplib.py 808 all_errors = (Error, IOError, EOFError, ssl.SSLError)
    [all...]
  /external/python/cpython3/Lib/asyncio/
sslproto.py 216 except (ssl.SSLError, ssl.CertificateError) as exc:
263 except ssl.SSLError as exc:
  /external/python/cpython3/Lib/
ssl.py 12 SSLError -- exception raised for I/O errors
103 SSLError, SSLZeroReturnError, SSLWantReadError, SSLWantWriteError,
430 raise SSLError('NPN protocols must be 1 to 255 in length')
454 raise SSLError('ALPN protocols must be 1 to 255 in length')
914 except SSLError as x:
    [all...]
ftplib.py 814 all_errors = (Error, OSError, EOFError, ssl.SSLError)
    [all...]
  /external/python/cpython3/Lib/test/test_asyncio/
test_sslproto.py 609 except ssl.SSLError:
646 except ssl.SSLError:
661 with self.assertRaises(ssl.SSLError):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
socket.py 67 from _ssl import SSLError as sslerror
  /external/python/google-api-python-client/googleapiclient/
http.py 51 _ssl_SSLError = ssl.SSLError
136 return value (for HTTP 5xx errors) or thrown (for ssl.SSLError).
    [all...]

Completed in 1091 milliseconds

1 2