summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorZackery Spytz <Osmunda46@gmail.com>2017-09-11 10:37:10 (GMT)
committerChristian Heimes <christian@python.org>2017-09-11 10:37:10 (GMT)
commit834a5cecac0e77e907762611c06fa460545487e7 (patch)
tree0351d303cb769891f68952d80d339d923abb7fe2 /Modules
parent2bb69a5b4e7f96cb35d1b28aa7b7b3974b351f59 (diff)
downloadcpython-834a5cecac0e77e907762611c06fa460545487e7.zip
cpython-834a5cecac0e77e907762611c06fa460545487e7.tar.gz
cpython-834a5cecac0e77e907762611c06fa460545487e7.tar.bz2
Remove a null statement that was necessary for --without-threads (#3478)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/socketmodule.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 50a4443..5df9d01 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) {