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 iceboy
Recipients gvanrossum, iceboy, vstinner, yselivanov
Date 2016-03-28.09:57:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1459159050.15.0.830010057156.issue26654@psf.upfronthosting.co.za>
In-reply-to
Content
import asyncio
import functools

def foo(x): raise Exception()

loop = asyncio.get_event_loop()
loop.call_soon(functools.partial(foo, x=1))
loop.run_forever()

Current error message:
    Exception in callback foo()() at ...:4

Expected error message:
    Exception in callback foo(x=1)() at ...:4
History
Date User Action Args
2016-03-28 09:57:30iceboysetrecipients: + iceboy, gvanrossum, vstinner, yselivanov
2016-03-28 09:57:30iceboysetmessageid: <1459159050.15.0.830010057156.issue26654@psf.upfronthosting.co.za>
2016-03-28 09:57:29iceboylinkissue26654 messages
2016-03-28 09:57:29iceboycreate