[Python-checkins] Remove a null statement that was necessary for --without-threads (#3478)

Christian Heimes webhook-mailer at python.org
Mon Sep 11 06:37:13 EDT 2017


https://github.com/python/cpython/commit/834a5cecac0e77e907762611c06fa460545487e7
commit: 834a5cecac0e77e907762611c06fa460545487e7
branch: master
author: Zackery Spytz <Osmunda46 at gmail.com>
committer: Christian Heimes <christian at python.org>
date: 2017-09-11T12:37:10+02:00
summary:

Remove a null statement that was necessary for --without-threads (#3478)

files:
M Modules/socketmodule.c

diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 50a4443a35a..5df9d014c35 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) {



More information about the Python-checkins mailing list