Skip to content

Commit 18b929b

Browse files
Update Lib/typing.py
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
1 parent 9a9c5c5 commit 18b929b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3275,7 +3275,7 @@ class DatabaseUser(TypedDict):
32753275
32763276
The closed argument controls whether the TypedDict allows additional
32773277
non-required items during inheritance and assignability checks.
3278-
If closed=True, the TypedDict is closed to additional items::
3278+
If closed=True, the TypedDict does not allow additional items::
32793279
32803280
Point2D = TypedDict('Point2D', {'x': int, 'y': int}, closed=True)
32813281
class Point3D(Point2D):

0 commit comments

Comments
 (0)