From: Ikko Eltociear Ashimine Date: Sun, 2 Apr 2023 15:25:46 +0000 (+0900) Subject: fix typo in _ssl.c (GH-103192) X-Git-Tag: v3.12.0a7~16 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a0305c5fdfdef7a362d0262c54399c4a6013d1ea;p=thirdparty%2FPython%2Fcpython.git fix typo in _ssl.c (GH-103192) seperated -> separated Automerge-Triggered-By: GH:AlexWaygood --- diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 3fbb37332f67..e0351a89e6a1 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -2006,7 +2006,7 @@ _ssl__SSLSocket_shared_ciphers_impl(PySSLSocket *self) /* Rather than use SSL_get_shared_ciphers, we use an equivalent algorithm because: - 1) It returns a colon seperated list of strings, in an undefined + 1) It returns a colon separated list of strings, in an undefined order, that we would have to post process back into tuples. 2) It will return a truncated string with no indication that it has done so, if the buffer is too small.