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, label=str)
Point2D = TypedDict('Point2D', {'x': int, 'y': int, 'label': str})

However, the former one is quite confusing since we have the `total` keyword 
arg for TypedDict. In addition, 
PEP589(https://www.python.org/dev/peps/pep-0589/#id19) doesn't have this.

I think we could discard the definition syntax using keyword args in the doc.

----------
assignee: docs@python
components: Documentation
messages: 408458
nosy: 97littleleaf11, docs@python
priority: normal
severity: normal
status: open
title: Docs: TypedDict alternative definition syntax with keyword args is 
confusing
versions: Python 3.10, Python 3.8, Python 3.9

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue46066>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to