We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a9c5c5 commit 18b929bCopy full SHA for 18b929b
1 file changed
Lib/typing.py
@@ -3275,7 +3275,7 @@ class DatabaseUser(TypedDict):
3275
3276
The closed argument controls whether the TypedDict allows additional
3277
non-required items during inheritance and assignability checks.
3278
- If closed=True, the TypedDict is closed to additional items::
+ If closed=True, the TypedDict does not allow additional items::
3279
3280
Point2D = TypedDict('Point2D', {'x': int, 'y': int}, closed=True)
3281
class Point3D(Point2D):
0 commit comments