diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-10-15 19:48:50 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2017-10-15 19:48:50 (GMT) |
commit | cfc604722ff5ad64de96ddeb944661f1e94d8cd0 (patch) | |
tree | 00c5eb0ca7a4429433581bb28ce99bb18a5fd928 /Modules | |
parent | e881302b70ab36bafcf37e3917be118bbec97763 (diff) | |
download | cpython-cfc604722ff5ad64de96ddeb944661f1e94d8cd0.zip cpython-cfc604722ff5ad64de96ddeb944661f1e94d8cd0.tar.gz cpython-cfc604722ff5ad64de96ddeb944661f1e94d8cd0.tar.bz2 |
[3.6] completly -> completely (GH-3999) (closes bpo-31788) (#4008)
(cherry picked from commit 1295e11d397c6138427296d5f9653a9e7dd69062)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c index a32fce4..df8c6a7 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -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"); |