Browse Source

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

pull/3498/head
Zackery Spytz 9 years ago
committed by Christian Heimes
parent
commit
834a5cecac
  1. 1
      Modules/socketmodule.c

1
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) {

Loading…
Cancel
Save