Updating python reference

This commit is contained in:
michael-corey 2026-04-18 13:43:29 -05:00
parent f1e99d887d
commit 2d95711d9d
2 changed files with 3 additions and 3 deletions

View File

@ -4,8 +4,8 @@ Library-style functions plus a thin CLI wrapper. Designed so an orchestrator
can wrap the library for directory/batch mode; orchestration is out of scope can wrap the library for directory/batch mode; orchestration is out of scope
here. here.
Python 3.9 compatible (target is an air-gapped host that currently only has Python 3.14 compatible (target is an air-gapped host that currently only has
3.9). ``from __future__ import annotations`` lets us use PEP 585 generics 3.14). ``from __future__ import annotations`` lets us use PEP 585 generics
as annotations; runtime-resolved type uses (dataclass defaults, etc.) stick as annotations; runtime-resolved type uses (dataclass defaults, etc.) stick
to ``typing``. to ``typing``.

View File

@ -5,7 +5,7 @@ Configure the four constants below, then run::
python3 file_viewer.py python3 file_viewer.py
Python 3.9 compatible. Python 3.14 compatible.
""" """
from __future__ import annotations from __future__ import annotations