Skip to content

Instantly share code, notes, and snippets.

View JelleZijlstra's full-sized avatar

Jelle Zijlstra JelleZijlstra

View GitHub Profile
@JelleZijlstra
JelleZijlstra / annotations-demo.py
Last active June 19, 2024 02:03 — forked from AlexWaygood/annotations-demo.py
Demo for an `__annotations__` solution
from collections.abc import Mapping
class _AnnotationsDescriptor(Mapping):
def __init__(self, owner: type, name: str):
self._annotations_cache = None
self._owner = owner
self._name = name
# Must act as a descriptor if accessed via `.`