We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfd1dfa commit 519daceCopy full SHA for 519dace
docs/conf.py
@@ -50,6 +50,8 @@
50
("py:meth", "protocol.WebSocketCommonProtocol.connection_lost"),
51
("py:meth", "protocol.WebSocketCommonProtocol.read_message"),
52
("py:meth", "protocol.WebSocketCommonProtocol.write_frame"),
53
+ # Caused by https://github.com/sphinx-doc/sphinx/issues/13838
54
+ ("py:class", "ssl_module.SSLContext"),
55
]
56
57
# Add any Sphinx extension module names here, as strings. They can be
src/websockets/trio/client.py
@@ -233,6 +233,9 @@ class connect:
233
234
"""
235
236
+ # Arguments of type SSLContext don't render correctly in the documentation
237
+ # because of https://github.com/sphinx-doc/sphinx/issues/13838.
238
+
239
def __init__(
240
self,
241
uri: str,
0 commit comments