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 dsiroky
Recipients dsiroky
Date 2011-05-27.18:06:48
SpamBayes Score 0.0012252054
Marked as misclassified No
Message-id <[email protected]>
In-reply-to
Content
Trying to send large bulk of data in MS Windows via non-blocking SSLSocket raises an exception but part of the data is delivered.

E.g.

ssl_socket.write(b"a" * 200000)

raises

ssl.SSLError: [Errno 3] _ssl.c:1126: The operation did not complete (write)

There is no way to get the sent bytes count which is essential in non-blocking communication.

ssl_socket.send() returns 0. This should be unified with posix behavior.
History
Date User Action Args
2011-05-27 18:06:49dsirokysetrecipients: + dsiroky
2011-05-27 18:06:49dsirokysetmessageid: <[email protected]>
2011-05-27 18:06:48dsirokylinkissue12197 messages
2011-05-27 18:06:48dsirokycreate