]> granicus.if.org Git - python/commitdiff
[3.6] completly -> completely (GH-3999) (closes bpo-31788) (#4008)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 15 Oct 2017 19:48:50 +0000 (12:48 -0700)
committerBenjamin Peterson <benjamin@python.org>
Sun, 15 Oct 2017 19:48:50 +0000 (12:48 -0700)
(cherry picked from commit 1295e11d397c6138427296d5f9653a9e7dd69062)

Modules/_ssl.c

index a32fce47ef641a766a7a71cced585e7d04714d43..df8c6a7d96d8d875e4ff8d3d021bdb5856c7207e 100644 (file)
@@ -2736,7 +2736,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");