Skip to content

Commit 768c262

Browse files
authored
Merge pull request #532 from tlsfuzzer/sphinx-fix
use new syntax for intersphinx links
2 parents 2fc7602 + a209b88 commit 768c262

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/conf.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -345,5 +345,7 @@
345345
# If true, do not generate a @detailmenu in the "Top" node's menu.
346346
#
347347
# texinfo_no_detailmenu = False
348-
intersphinx_mapping = {'https://docs.python.org/': None,
349-
'https://ecdsa.readthedocs.io/en/latest/': None}
348+
intersphinx_mapping = {
349+
'python': ('https://docs.python.org/', None),
350+
'ecdsa': ('https://ecdsa.readthedocs.io/en/latest/', None),
351+
}

tlslite/handshakesettings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ class HandshakeSettings(object):
274274
The allowed hashes are: "sha1", "sha224", "sha256",
275275
"sha384" and "sha512".
276276
277-
"vartype more_sig_schemes: list(str)
277+
:vartype more_sig_schemes: list(str)
278278
:ivar more_sig_schemes: List of additional signatures schemes (ones
279279
that don't use RSA-PKCS#1 v1.5, RSA-PSS, DSA, or ECDSA) to advertise
280280
as supported.

0 commit comments

Comments
 (0)