# HG changeset patch # User Manuel Jacob # Date 2020-05-29 20:47:58 # Node ID 39c598f1c77411ce3759e1b7c3eb4ccf2e051352 # Parent 95c832849955eb1db0a8d6d71705226d2757cb7f sslutil: remove comment referring to unsupported legacy stacks diff --git a/mercurial/sslutil.py b/mercurial/sslutil.py --- a/mercurial/sslutil.py +++ b/mercurial/sslutil.py @@ -257,9 +257,7 @@ def protocolsettings(minimumprotocol): raise ValueError(b'protocol value not supported: %s' % minimumprotocol) # Despite its name, PROTOCOL_SSLv23 selects the highest protocol - # that both ends support, including TLS protocols. On legacy stacks, - # the highest it likely goes is TLS 1.0. On modern stacks, it can - # support TLS 1.2. + # that both ends support, including TLS protocols. # # The PROTOCOL_TLSv* constants select a specific TLS version # only (as opposed to multiple versions). So the method for