Created
December 27, 2025 07:13
-
-
Save mypy-play/c1da95c4525a174a58c4e6a2371badf3 to your computer and use it in GitHub Desktop.
Shared via mypy Playground
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from typing import Callable, ParamSpec | |
| P = ParamSpec('P') | |
| DefaultP = ParamSpec('DefaultP', default=(int, str)) # Error |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment