From ec18f6a6d6c9dc98e6c1a1b0e8b5c170976bfd39 Mon Sep 17 00:00:00 2001 From: wyattscarpenter Date: Mon, 3 Nov 2025 05:06:26 -0800 Subject: [PATCH] document --enable-incomplete-feature TypeForm, minimally but sufficiently --- docs/source/command_line.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/source/command_line.rst b/docs/source/command_line.rst index 79dd68a84b28..98c966a33854 100644 --- a/docs/source/command_line.rst +++ b/docs/source/command_line.rst @@ -1159,7 +1159,7 @@ format into the specified directory. Enabling incomplete/experimental features ***************************************** -.. option:: --enable-incomplete-feature {PreciseTupleTypes,InlineTypedDict} +.. option:: --enable-incomplete-feature {PreciseTupleTypes,InlineTypedDict,TypeForm} Some features may require several mypy releases to implement, for example due to their complexity, potential for backwards incompatibility, or @@ -1214,6 +1214,9 @@ List of currently incomplete/experimental features: def test_values() -> {"int": int, "str": str}: return {"int": 42, "str": "test"} +* ``TypeForm``: this feature enables ``TypeForm``, as described in + `PEP 747 – Annotating Type Forms _`. + Miscellaneous *************