mirror of
https://github.com/python/cpython.git
synced 2025-08-30 21:48:47 +00:00
gh-108303: Move all certificates to Lib/test/certdata/
(#109489)
This commit is contained in:
parent
929cc4e4a0
commit
e57ecf6bbc
41 changed files with 31 additions and 28 deletions
|
@ -29,8 +29,8 @@ if hasattr(poplib, 'POP3_SSL'):
|
|||
import ssl
|
||||
|
||||
SUPPORTS_SSL = True
|
||||
CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "keycert3.pem")
|
||||
CAFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "pycacert.pem")
|
||||
CERTFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "certdata", "keycert3.pem")
|
||||
CAFILE = os.path.join(os.path.dirname(__file__) or os.curdir, "certdata", "pycacert.pem")
|
||||
|
||||
requires_ssl = skipUnless(SUPPORTS_SSL, 'SSL not supported')
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue