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 ofekkir
Recipients asvetlov, ofekkir, yselivanov
Date 2021-06-10.05:55:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1623304558.86.0.995602779591.issue44371@roundup.psfhosted.org>
In-reply-to
Content
Following https://bugs.python.org/issue32751 I think wait_for should also wait for running coroutine in case it has been cancelled.

Example code:

import asyncio


async def inner():
    try:
        print(1)
        await asyncio.sleep(3600)
        print(2)
    except asyncio.CancelledError:
        print('inner - canc')
        raise


async def outer(f):
    try:
        print('a')
        # Version 1 - This creates the expected behaviour
        # await f
        # Version 2 - This creates the reversed behaviour
        await asyncio.wait_for(f, timeout=500)
        print('b')
    except asyncio.CancelledError:
        print('outer - canc')


@pytest.mark.asyncio
async def test_t1():
    t = asyncio.create_task(outer(inner()))
    done, pending = await asyncio.wait([t], timeout=1)
    t.cancel()

    await t

------
I expect inner to be cancelled and awaited before outer is finished.
i.e., exepcted output:
1
inner - canc
outer - canc


While I get:
1
outer - canc
inner - canc
History
Date User Action Args
2021-06-10 05:55:58ofekkirsetrecipients: + ofekkir, asvetlov, yselivanov
2021-06-10 05:55:58ofekkirsetmessageid: <1623304558.86.0.995602779591.issue44371@roundup.psfhosted.org>
2021-06-10 05:55:58ofekkirlinkissue44371 messages
2021-06-10 05:55:58ofekkircreate