[issue45803] make_dataclass is missing the documented kw_only argument

2021-11-20 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 2.0 -> 3.0 pull_requests: +27921 pull_request: https://github.com/python/cpython/pull/29680 ___ Python tracker _

[issue45803] make_dataclass is missing the documented kw_only argument

2021-11-20 Thread Eric V. Smith
Eric V. Smith added the comment: Thanks for the bug report! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45803] make_dataclass is missing the documented kw_only argument

2021-11-20 Thread Eric V. Smith
Change by Eric V. Smith : -- keywords: +patch pull_requests: +27920 stage: -> patch review pull_request: https://github.com/python/cpython/pull/29679 ___ Python tracker ___ __

[issue45803] make_dataclass is missing the documented kw_only argument

2021-11-20 Thread Eric V. Smith
Change by Eric V. Smith : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue45803] make_dataclass is missing the documented kw_only argument

2021-11-13 Thread Eric V. Smith
Change by Eric V. Smith : -- assignee: -> eric.smith components: +Library (Lib) -ctypes nosy: +eric.smith versions: +Python 3.11 ___ Python tracker ___ ___

[issue45803] make_dataclass is missing the documented kw_only argument

2021-11-13 Thread Tsvetan Kintisheff
Tsvetan Kintisheff added the comment: to clarify, the documentation permalink is: https://docs.python.org/3/library/dataclasses.html#dataclasses.make_dataclass -- ___ Python tracker

[issue45803] make_dataclass is missing the documented kw_only argument

2021-11-13 Thread Tsvetan Kintisheff
New submission from Tsvetan Kintisheff : According to the 3.10 documentation, make_dataclass includes the kw_only argument: https://github.com/python/cpython/blob/3f15792d60011639d9b170d8a76c6db7f6e83665/Lib/dataclasses.py#L1327 However, the source code referred to by the same doc does not ap