Skip to content

TimerHandle.when() segfaults if called after callback #468

Closed
@j0x539

Description

@j0x539
  • uvloop version: uvloop==0.16.0
  • Python version: 3.10.4
  • Platform: Linux-5.17.5-200.fc35.x86_64-x86_64-with-glibc2.34
  • Can you reproduce the bug with PYTHONASYNCIODEBUG in env?: Yes
  • Does uvloop behave differently from vanilla asyncio? How?: It segfaults.

Calling when() on a TimerHandle object after callback has been executed causes a core dump.

import uvloop
import asyncio


async def main():
    loop = asyncio.get_running_loop()
    timer = loop.call_later(0.1, lambda: None) # call any function
    await asyncio.sleep(0.2)
    timer.when() # segfault happens here
    
uvloop.install()
asyncio.run(main())

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions