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 Claymore
Recipients Claymore
Date 2014-02-26.03:25:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1393385115.15.0.117931989302.issue20777@psf.upfronthosting.co.za>
In-reply-to
Content
PyArg_ParseTupleAndKeywords is not respecting the format string "sy*ss"

When using the format "sbss" with the following valid arguments
"enp0s8", 0, "08:00:27:da:b3:47", "08:00:27:11:22:33"
there is no error and the function succeeds in parsing the arguments.

But when passing the following valid arguments,
"8bf2f93c-8f44-4960-a2de-71f87130882e", bytes(list([0,0,0,1])), "08:00:27:11:22:33", "10.0.0.3"
it will fail stating that the 3rd argument has a null character.
History
Date User Action Args
2014-02-26 03:25:15Claymoresetrecipients: + Claymore
2014-02-26 03:25:15Claymoresetmessageid: <1393385115.15.0.117931989302.issue20777@psf.upfronthosting.co.za>
2014-02-26 03:25:15Claymorelinkissue20777 messages
2014-02-26 03:25:14Claymorecreate