• 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
..
__init__.py Loading commit data...
__main__.py Loading commit data...
echo.py Loading commit data...
echo2.py Loading commit data...
echo3.py Loading commit data...
functional.py Loading commit data...
keycert3.pem Loading commit data...
pycacert.pem Loading commit data...
ssl_cert.pem Loading commit data...
ssl_key.pem Loading commit data...
test_base_events.py Loading commit data...
test_buffered_proto.py Loading commit data...
test_context.py Loading commit data...
test_events.py Loading commit data...
test_futures.py Loading commit data...
test_locks.py Loading commit data...
test_pep492.py Loading commit data...
test_proactor_events.py Loading commit data...
test_queues.py Loading commit data...
test_runners.py Loading commit data...
test_selector_events.py Loading commit data...
test_server.py Loading commit data...
test_sslproto.py Loading commit data...
test_streams.py Loading commit data...
test_subprocess.py Loading commit data...
test_tasks.py Loading commit data...
test_transports.py Loading commit data...
test_unix_events.py Loading commit data...
test_windows_events.py Loading commit data...
test_windows_utils.py Loading commit data...
utils.py Loading commit data...