From e73ef9cc39374f908548ca062a298305c04c146f Mon Sep 17 00:00:00 2001 From: Alicja Kario Date: Fri, 18 Oct 2024 19:33:19 +0200 Subject: [PATCH 1/2] use new syntax for intersphinx links --- docs/conf.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 14ed9c25..e83a39bd 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -345,5 +345,7 @@ # If true, do not generate a @detailmenu in the "Top" node's menu. # # texinfo_no_detailmenu = False -intersphinx_mapping = {'https://docs.python.org/': None, - 'https://ecdsa.readthedocs.io/en/latest/': None} +intersphinx_mapping = { + 'python': ('https://docs.python.org/', None), + 'ecdsa': ('https://ecdsa.readthedocs.io/en/latest/', None), +} From a209b88b1de6bbcc0ac5f16cc56698e9064ebf99 Mon Sep 17 00:00:00 2001 From: Alicja Kario Date: Mon, 21 Oct 2024 14:38:40 +0200 Subject: [PATCH 2/2] fix typo in handshakesettings docs --- tlslite/handshakesettings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tlslite/handshakesettings.py b/tlslite/handshakesettings.py index d0d8af08..2ccb0841 100644 --- a/tlslite/handshakesettings.py +++ b/tlslite/handshakesettings.py @@ -274,7 +274,7 @@ class HandshakeSettings(object): The allowed hashes are: "sha1", "sha224", "sha256", "sha384" and "sha512". - "vartype more_sig_schemes: list(str) + :vartype more_sig_schemes: list(str) :ivar more_sig_schemes: List of additional signatures schemes (ones that don't use RSA-PKCS#1 v1.5, RSA-PSS, DSA, or ECDSA) to advertise as supported.