File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1166,8 +1166,8 @@ TypedDict
11661166
11671167.. note ::
11681168
1169- TypedDict is not yet an officially supported feature. It may not work reliably,
1170- and details of TypedDict may change in future mypy releases.
1169+ TypedDict is an officially supported feature, but it is still experimental.
1170+
11711171
11721172Python programs often use dictionaries with string keys to represent objects.
11731173Here is a typical example:
@@ -1307,7 +1307,9 @@ Class-based syntax
13071307------------------
13081308
13091309Python 3.6 supports an alternative, class-based syntax to define a
1310- TypedDict:
1310+ TypedDict. This means that your code must be checked as if it were
1311+ Python 3.6 (using the ``--python-version `` flag on the command line,
1312+ for example). Simply running mypy on Python 3.6 is insufficient.
13111313
13121314.. code-block :: python
13131315
You can’t perform that action at this time.
0 commit comments