Type hints

Type hints MAY be used but are not required. Python 3.9 compatibility MUST be maintained — use from __future__ import annotations or typing module forms (e.g., list[str] requires 3.9+, Optional[str] works everywhere).

version
1.0.0
platforms
python
tags
language, python, type-hints
author
Mike Fullerton
modified
2026-03-27

Change History

Version Date Author Summary
1.0.0 2026-03-27 Mike Fullerton Initial creation