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 Paradisee
Recipients Paradisee, gvanrossum, vstinner, yselivanov
Date 2016-01-15.13:52:59
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452865979.87.0.840611229209.issue26125@psf.upfronthosting.co.za>
In-reply-to
Content
Incorrect error message in the module asyncio.selector_events for the methods:
_SelectorSocketTransport.write
_SelectorSslTransport.write
_SelectorDatagramTransport.sendto.

The previous error was raising a Tuple:
TypeError: ('data argument must be byte-ish (%r)', <class 'str'>)

Patched:
TypeError: data argument must be a bytes-like object, not 'str'
History
Date User Action Args
2016-01-15 13:52:59Paradiseesetrecipients: + Paradisee, gvanrossum, vstinner, yselivanov
2016-01-15 13:52:59Paradiseesetmessageid: <1452865979.87.0.840611229209.issue26125@psf.upfronthosting.co.za>
2016-01-15 13:52:59Paradiseelinkissue26125 messages
2016-01-15 13:52:59Paradiseecreate