Remove last occurrance of PyArg_GetInt. It is deprecated,
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index 4f35b32..42605ba 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -969,7 +969,7 @@
 {
  int block;
  int delay_flag;
- if (!PyArg_GetInt(args, &block))
+ if (!PyArg_Parse(args, "i", &block))
   return NULL;
  Py_BEGIN_ALLOW_THREADS
   socketioctl(s->sock_fd, 0x80046679, (u_long*)&block);