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, iceboy, vstinner, yselivanov
Date 2016-03-29.21:54:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1459288479.19.0.601775180486.issue26654@psf.upfronthosting.co.za>
In-reply-to
Content
> Oh, wow. I didn't even know we special-case partial() there.

I wrote the code doing that. I did it to get more readable and shorter logs since asyncio produces a lot of logs.

Example:

    Exception in callback print("Hello", "World!")() at ...:4

without special case:

    Exception in functools.partial(<built-in function print>, 'Hello', 'World!') at ...:4
History
Date User Action Args
2016-03-29 21:54:39vstinnersetrecipients: + vstinner, gvanrossum, yselivanov, iceboy
2016-03-29 21:54:39vstinnersetmessageid: <1459288479.19.0.601775180486.issue26654@psf.upfronthosting.co.za>
2016-03-29 21:54:39vstinnerlinkissue26654 messages
2016-03-29 21:54:39vstinnercreate