Browse Source

Fix compiler warning about obviously unreachable code.

pull/9921/head
Raymond Hettinger 10 years ago
parent
commit
1ce6885f8a
  1. 4
      Modules/socketmodule.c

4
Modules/socketmodule.c

@ -5411,10 +5411,6 @@ socket_inet_ntop(PyObject *self, PyObject *args)
} else {
return PyUnicode_FromString(retval);
}
/* NOTREACHED */
PyErr_SetString(PyExc_RuntimeError, "invalid handling of inet_ntop");
return NULL;
}
#elif defined(MS_WINDOWS)

Loading…
Cancel
Save