Skip to content

Instantly share code, notes, and snippets.

@mypy-play
Created January 24, 2026 18:30
Show Gist options
  • Select an option

  • Save mypy-play/0b932bfc0dabfac3f9be56232048ae07 to your computer and use it in GitHub Desktop.

Select an option

Save mypy-play/0b932bfc0dabfac3f9be56232048ae07 to your computer and use it in GitHub Desktop.
Shared via mypy Playground
from typing import Protocol
class P(Protocol):
def not_abstractmethod(self): ...
class Q(P): ...
Q()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment