summaryrefslogtreecommitdiff
path: root/Modules/_ssl.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 14:40:41 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 14:40:41 +0200
commit790e971ef783c4955f60128f74f759320bb954fa (patch)
tree7407f5b39b776c0f6eee9d9f947e45b4da8fc7ec /Modules/_ssl.c
parent627f57aa3dd3dcc27f1437ad99a7409c5155b59b (diff)
downloadcpython-790e971ef783c4955f60128f74f759320bb954fa.tar.gz
Issue #25523: Further a-to-an corrections new in 3.5.
Diffstat (limited to 'Modules/_ssl.c')
-rw-r--r--Modules/_ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_ssl.c b/Modules/_ssl.c
index 5d20e7c414..4f4379fb44 100644
--- a/Modules/_ssl.c
+++ b/Modules/_ssl.c
@@ -3273,7 +3273,7 @@ _servername_callback(SSL *s, int *al, void *args)
ssl = SSL_get_app_data(s);
assert(PySSLSocket_Check(ssl));
- /* The servername callback expects a argument that represents the current
+ /* The servername callback expects an argument that represents the current
* SSL connection and that has a .context attribute that can be changed to
* identify the requested hostname. Since the official API is the Python
* level API we want to pass the callback a Python level object rather than