ayaports/backports/py3-limits/our-std-is-good-enough.patch

12 lines
279 B
Diff
Raw Normal View History

2023-11-27 14:22:10 +00:00
--- ./limits/typing.py.orig
+++ ./limits/typing.py
@@ -13,7 +13,7 @@
2023-11-27 14:22:10 +00:00
Union,
)
-from typing_extensions import ClassVar, Counter, ParamSpec, Protocol, TypeAlias
+from typing import ClassVar, Counter, ParamSpec, Protocol, TypeAlias
2023-11-27 14:22:10 +00:00
Serializable = Union[int, str, float]
2024-12-13 15:57:44 +00:00