]> granicus.if.org Git - python/commitdiff
Remove a null statement that was necessary for --without-threads (#3478)
authorZackery Spytz <Osmunda46@gmail.com>
Mon, 11 Sep 2017 10:37:10 +0000 (04:37 -0600)
committerChristian Heimes <christian@python.org>
Mon, 11 Sep 2017 10:37:10 +0000 (12:37 +0200)
Modules/socketmodule.c

index 50a4443a35a1e6f823bee03a92eafc9d5a18aedb..5df9d014c35a729d6f7f7e1548077fa31fd37635 100644 (file)
@@ -623,7 +623,6 @@ internal_setblocking(PySocketSockObject *s, int block)
     result = 0;
 
   done:
-    ;  /* necessary for --without-threads flag */
     Py_END_ALLOW_THREADS
 
     if (result) {