summaryrefslogtreecommitdiffstats
path: root/Modules/_ssl.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:40:41 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-02 12:40:41 (GMT)
commitf51d715845dfede2803ef7a2e6ea4e2a03f18486 (patch)
tree976bc3c3a7633d32b6bccb715cda9da34857e6c4 /Modules/_ssl.c
parenta84f6c3dd3ef02bdbbc67b4cd1223749f3c39030 (diff)
downloadcpython-f51d715845dfede2803ef7a2e6ea4e2a03f18486.zip
cpython-f51d715845dfede2803ef7a2e6ea4e2a03f18486.tar.gz
cpython-f51d715845dfede2803ef7a2e6ea4e2a03f18486.tar.bz2
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 5d20e7c..4f4379f 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