This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author drphil
Recipients
Date 2005-01-16.00:28:36
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=340305

This additionnal patch give a more correct use of
PyArg_ParseTuple

--- socketmodule.c.ori     2005-01-15 23:55:47.000000000 +0100
+++ socketmodule.c      2005-01-16 01:25:54.000000000 +0100
@@ -1106,7 +1106,7 @@
                                args->ob_type->tp_name);
                        return 0;
                }
-               if (!PyArg_ParseTuple(args, "II", &pid,
&groups))
+               if (!PyArg_ParseTuple(args,
"II:getsockaddrarg", &pid, &groups))
                        return 0;
                addr->nl_family = AF_NETLINK;
                addr->nl_pid = pid;
History
Date User Action Args
2007-08-23 15:41:21adminlinkissue1103116 messages
2007-08-23 15:41:21admincreate