Skip to content

Instantly share code, notes, and snippets.

@mypy-play
Created May 15, 2024 09:04
Show Gist options
  • Save mypy-play/1b48c871277331bf5d0c1a9434057fde to your computer and use it in GitHub Desktop.
Save mypy-play/1b48c871277331bf5d0c1a9434057fde to your computer and use it in GitHub Desktop.
Shared via mypy Playground
from typing import Generic, TypeVar
T = TypeVar("T")
class Foo(Exception, Generic[T]): ...
try:
raise Foo
except Foo[int]: # no error, crashes at runtime
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment