Python: Improve qlhelp according to review

This commit is contained in:
Rasmus Lerchedahl Petersen
2021-02-24 22:02:16 +01:00
parent 89d0724fb4
commit 10657160bc

View File

@@ -38,11 +38,13 @@
</p>
<p>
Note that <code>ssl.wrap_socket</code> has been deprecated in
Python 3.7. A preferred alternative is to use
<code>ssl.SSLContext</code>, which is supported in Python 2.7.9 and
3.2 and later versions or the convenience function
<code>ssl.create_default_context</code>, which is supported in Python
3.4 and later versions.
Python 3.7. The recommended alternatives are:
<ul>
<li><code>ssl.SSLContext</code> - supported in Python 2.7.9,
3.2, and later versions</li>
<li><code>ssl.create_default_context</code> - a convenience function,
supported in Python 3.4 and later versions.</li>
</ul>
</p>
</example>