Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/zmq/_typing.py: 44%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1from __future__ import annotations
3import sys
5if sys.version_info >= (3, 10):
6 from typing import TypeAlias
7else:
8 try:
9 from typing_extensions import TypeAlias
10 except ImportError:
11 TypeAlias = type # type: ignore