• Elvis Pranskevichus's avatar
    bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (GH-9679) · 0c797a6a
    Elvis Pranskevichus yazdı
    The C implementation of asyncio.Task currently fails to perform the
    cancellation cleanup correctly in the following scenario.
    
        async def task1():
            async def task2():
                await task3     # task3 is never cancelled
    
            asyncio.current_task().cancel()
            await asyncio.create_task(task2())
    
    The actuall error is a hardcoded call to `future_cancel()` instead of
    calling the `cancel()` method of a future-like object.
    
    Thanks to Vladimir Matveev for noticing the code discrepancy and to
    Yury Selivanov for coming up with a pathological scenario.
    0c797a6a
Adı
Son kayıt (commit)
Son güncelleme
..
NEWS.d Loading commit data...
ACKS Loading commit data...
HISTORY Loading commit data...
Porting Loading commit data...
README Loading commit data...
README.AIX Loading commit data...
README.coverity Loading commit data...
README.valgrind Loading commit data...
SpecialBuilds.txt Loading commit data...
coverity_model.c Loading commit data...
gdbinit Loading commit data...
indent.pro Loading commit data...
python-config.in Loading commit data...
python-config.sh.in Loading commit data...
python-wing3.wpr Loading commit data...
python-wing4.wpr Loading commit data...
python-wing5.wpr Loading commit data...
python.man Loading commit data...
python.pc.in Loading commit data...
svnmap.txt Loading commit data...
valgrind-python.supp Loading commit data...
vgrindefs Loading commit data...