mirror of
https://github.com/python/cpython.git
synced 2025-08-08 19:09:46 +00:00
[3.12] gh-108303: Move all certificates to Lib/test/certdata/
(GH-109489) (#109682)
* gh-108303: Move all certificates to `Lib/test/certdata/` (GH-109489)
(cherry picked from commit e57ecf6bbc
)
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Python 3.12 backport: update also `test_nntplib`.
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Co-authored-by: T. Wouters <thomas@python.org>
This commit is contained in:
parent
5b168fdd6f
commit
c2d542b42c
42 changed files with 32 additions and 29 deletions
|
@ -325,8 +325,8 @@ class DummyFTPServer(asyncore.dispatcher, threading.Thread):
|
|||
|
||||
if ssl is not None:
|
||||
|
||||
CERTFILE = os.path.join(os.path.dirname(__file__), "keycert3.pem")
|
||||
CAFILE = os.path.join(os.path.dirname(__file__), "pycacert.pem")
|
||||
CERTFILE = os.path.join(os.path.dirname(__file__), "certdata", "keycert3.pem")
|
||||
CAFILE = os.path.join(os.path.dirname(__file__), "certdata", "pycacert.pem")
|
||||
|
||||
class SSLConnection(asyncore.dispatcher):
|
||||
"""An asyncore.dispatcher subclass supporting TLS/SSL."""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue