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 vstinner
Recipients gvanrossum, pitrou, vstinner
Date 2013-12-12.23:02:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386889369.33.0.285516490097.issue19967@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks to the PEP 442 (Safe object finalization), _TracebackLogger helper of asyncio.Futures becomes useless.

Attached patch removes it.

--

If you agree to diverge code with Tulip project, the Python 3.3 code of WriteTransport.writelines can also be removed:

        if not PY34:
            # In Python 3.3, bytes.join() doesn't handle memoryview.
            list_of_data = (
                bytes(data) if isinstance(data, memoryview) else data
                for data in list_of_data)
History
Date User Action Args
2013-12-12 23:02:49vstinnersetrecipients: + vstinner, gvanrossum, pitrou
2013-12-12 23:02:49vstinnersetmessageid: <1386889369.33.0.285516490097.issue19967@psf.upfronthosting.co.za>
2013-12-12 23:02:49vstinnerlinkissue19967 messages
2013-12-12 23:02:49vstinnercreate