Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
add test
  • Loading branch information
arihant2math authored and youknowone committed Jun 29, 2025
commit 159769876f99508ba79c266cabd8cedf354ba732
10 changes: 10 additions & 0 deletions extra_tests/snippets/stdlib_typing.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from collections.abc import Awaitable, Callable
from typing import TypeVar

T = TypeVar("T")


def abort_signal_handler(
fn: Callable[[], Awaitable[T]], on_abort: Callable[[], None] | None = None
) -> T:
pass
Loading