summaryrefslogtreecommitdiff
path: root/Modules/socketmodule.c
diff options
context:
space:
mode:
authorZackery Spytz <Osmunda46@gmail.com>2017-09-11 04:37:10 -0600
committerChristian Heimes <christian@python.org>2017-09-11 12:37:10 +0200
commit834a5cecac0e77e907762611c06fa460545487e7 (patch)
tree0351d303cb769891f68952d80d339d923abb7fe2 /Modules/socketmodule.c
parent2bb69a5b4e7f96cb35d1b28aa7b7b3974b351f59 (diff)
downloadcpython-git-834a5cecac0e77e907762611c06fa460545487e7.tar.gz
Remove a null statement that was necessary for --without-threads (#3478)
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r--Modules/socketmodule.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 50a4443a35..5df9d014c3 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -623,7 +623,6 @@ internal_setblocking(PySocketSockObject *s, int block)
result = 0;
done:
- ; /* necessary for --without-threads flag */
Py_END_ALLOW_THREADS
if (result) {