Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use new syntax for intersphinx links #532

Merged
merged 2 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}
2 changes: 1 addition & 1 deletion tlslite/handshakesettings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading