Change by 97littleleaf11 <97littlelea...@gmail.com>:
--
keywords: +patch
pull_requests: +29305
stage: -> patch review
pull_request: https://github.com/python/cpython/pull/31126
___
Python tracker
<https://bugs.python.or
Change by 97littleleaf11 <97littlelea...@gmail.com>:
--
title: TypedDict alternative definition syntax with keyword args is confusing
-> Remove keyword args syntax for TypedDict definition
___
Python tracker
<https://bugs.python.or
Change by 97littleleaf11 <97littlelea...@gmail.com>:
--
title: [doc] TypedDict alternative definition syntax with keyword args is
confusing -> TypedDict alternative definition syntax with keyword args is
confusing
___
Python tracke
Change by 97littleleaf11 <97littlelea...@gmail.com>:
--
title: Docs: TypedDict alternative definition syntax with keyword args is
confusing -> [doc] TypedDict alternative definition syntax with keyword args is
confusing
___
Python tracke
New submission from 97littleleaf11 <97littlelea...@gmail.com>:
According to the docs:
https://docs.python.org/3/library/typing.html?#typing.TypedDict, there are two
additional equivalent syntax for TypedDict definition.
Point2D = TypedDict('Point2D', x=int, y=int, la