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 christian.heimes
Recipients AkshayTakkar, asvetlov, christian.heimes, yselivanov
Date 2019-06-25.19:42:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
You can't use sock_recv() with a wrapped SSL socket. A SSLSocket behaves differently because there is user-level buffering. The connection operates on TLS frames and only hands off data after it has been decrypted and verified. asyncio uses wrap_bio().
History
Date User Action Args
2019-06-25 19:42:40christian.heimessetrecipients: + christian.heimes, asvetlov, yselivanov, AkshayTakkar
2019-06-25 19:42:40christian.heimessetmessageid: <[email protected]>
2019-06-25 19:42:40christian.heimeslinkissue37404 messages
2019-06-25 19:42:40christian.heimescreate