From: Zackery Spytz Date: Mon, 11 Sep 2017 10:37:10 +0000 (-0600) Subject: Remove a null statement that was necessary for --without-threads (#3478) X-Git-Tag: v3.7.0a1~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=834a5cecac0e77e907762611c06fa460545487e7;p=python Remove a null statement that was necessary for --without-threads (#3478) --- 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) {