From 834a5cecac0e77e907762611c06fa460545487e7 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Mon, 11 Sep 2017 04:37:10 -0600 Subject: [PATCH] Remove a null statement that was necessary for --without-threads (#3478) --- Modules/socketmodule.c | 1 - 1 file changed, 1 deletion(-) 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) { -- 2.40.0