summaryrefslogtreecommitdiffstats
path: root/Modules/socketmodule.c
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 22:34:00 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2013-03-11 22:34:00 (GMT)
commit0f84764a09401bb93f544141a433db5acd751dd2 (patch)
tree738adf0e585f39a92f5f3b414fc3feeab636e196 /Modules/socketmodule.c
parent98472b839674a78b0cbb09f50a61f70019591a4a (diff)
downloadcpython-0f84764a09401bb93f544141a433db5acd751dd2.zip
cpython-0f84764a09401bb93f544141a433db5acd751dd2.tar.gz
cpython-0f84764a09401bb93f544141a433db5acd751dd2.tar.bz2
Issue #17047: remove doubled words added in 3.3
as reported by Serhiy Storchaka and Matthew Barnett.
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r--Modules/socketmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 4198207..a6f8c5a 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -3609,7 +3609,7 @@ sock_sendmsg(PySocketSockObject *s, PyObject *args)
the next header, it checks its (uninitialized) cmsg_len
member to see if the "message" fits in the buffer, and
returns NULL if it doesn't. Zero-filling the buffer
- ensures that that doesn't happen. */
+ ensures that this doesn't happen. */
memset(controlbuf, 0, controllen);
for (i = 0; i < ncmsgbufs; i++) {