]> granicus.if.org Git - python/commitdiff
completly -> completely (#3999) (closes bpo-31788)
authorSemen Zhydenko <simeon.zhidenko@gmail.com>
Sun, 15 Oct 2017 19:28:31 +0000 (21:28 +0200)
committerBenjamin Peterson <benjamin@python.org>
Sun, 15 Oct 2017 19:28:31 +0000 (12:28 -0700)
Modules/_ssl.c

index 73abad3dcf1c7c452ba688b39edee0ca5e4dcb46..380dd1b72db0f199e768a6c8dfb892d5b5beb0c3 100644 (file)
@@ -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");