[Python-checkins] completly -> completely (#3999) (closes bpo-31788)

Benjamin Peterson webhook-mailer at python.org
Sun Oct 15 15:28:34 EDT 2017


https://github.com/python/cpython/commit/1295e11d397c6138427296d5f9653a9e7dd69062
commit: 1295e11d397c6138427296d5f9653a9e7dd69062
branch: master
author: Semen Zhydenko <simeon.zhidenko at gmail.com>
committer: Benjamin Peterson <benjamin at python.org>
date: 2017-10-15T12:28:31-07:00
summary:

completly -> completely (#3999) (closes bpo-31788)

files:
M Modules/_ssl.c

diff --git a/Modules/_ssl.c b/Modules/_ssl.c
index 73abad3dcf1..380dd1b72db 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -2798,7 +2798,7 @@ _ssl__SSLContext_impl(PyTypeObject *type, int proto_version)
 #endif
     SSL_CTX_set_options(self->ctx, options);
 
-    /* A bare minimum cipher list without completly broken cipher suites.
+    /* A bare minimum cipher list without completely broken cipher suites.
      * It's far from perfect but gives users a better head start. */
     if (proto_version != PY_SSL_VERSION_SSL2) {
         result = SSL_CTX_set_cipher_list(ctx, "HIGH:!aNULL:!eNULL:!MD5");



More information about the Python-checkins mailing list