Message 190357 - Python tracker

Message190357

Author Tom.van.Leeuwen
Recipients Tom.van.Leeuwen
Date 2013-05-30.12:56:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1369918582.13.0.605373457603.issue18100@psf.upfronthosting.co.za>
In-reply-to
Content
When using socket.sendall() to send a buffer of 2GB or more (for example, numpy.zeros(2*GB, dtype=numpy.uint8) ), it doesn't send anything at all.

In socketmodule.c, socket.sendall() sock_sendall uses an int for len, while this should be a Py_ssize_t.
History
Date User Action Args
2013-05-30 12:56:22Tom.van.Leeuwensetrecipients: + Tom.van.Leeuwen
2013-05-30 12:56:22Tom.van.Leeuwensetmessageid: <1369918582.13.0.605373457603.issue18100@psf.upfronthosting.co.za>
2013-05-30 12:56:22Tom.van.Leeuwenlinkissue18100 messages
2013-05-30 12:56:21Tom.van.Leeuwencreate