This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: The documentation for PyObject_GenericSetDict() is incorrect
Type: Stage: resolved
Components: Documentation Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: ZackerySpytz, docs@python, miss-islington, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2020-03-16 05:23 by ZackerySpytz, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 19026 merged ZackerySpytz, 2020-03-16 05:25
PR 19040 merged miss-islington, 2020-03-17 08:20
PR 19041 merged miss-islington, 2020-03-17 08:20
Messages (4)
msg364287 - (view) Author: Zackery Spytz (ZackerySpytz) * (Python triager) Date: 2020-03-16 05:23
PyObject_GenericSetDict() takes three arguments, but the documentation states that it takes just two.
msg364392 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2020-03-17 08:19
New changeset a45b695b9fcfbbb0a087222abc5c8d691a7d2770 by Zackery Spytz in branch 'master':
bpo-39973: Fix the docs for PyObject_GenericSetDict() (GH-19026)
https://github.com/python/cpython/commit/a45b695b9fcfbbb0a087222abc5c8d691a7d2770
msg364393 - (view) Author: miss-islington (miss-islington) Date: 2020-03-17 08:25
New changeset da1fe768e582387212201ab8737a1a5f26110664 by Miss Islington (bot) in branch '3.8':
bpo-39973: Fix the docs for PyObject_GenericSetDict() (GH-19026)
https://github.com/python/cpython/commit/da1fe768e582387212201ab8737a1a5f26110664
msg364394 - (view) Author: miss-islington (miss-islington) Date: 2020-03-17 08:25
New changeset 4e3a7f9205112e7da1032aa802edf84379b134fc by Miss Islington (bot) in branch '3.7':
bpo-39973: Fix the docs for PyObject_GenericSetDict() (GH-19026)
https://github.com/python/cpython/commit/4e3a7f9205112e7da1032aa802edf84379b134fc
History
Date User Action Args
2022-04-11 14:59:28adminsetgithub: 84154
2020-03-17 09:02:17serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-03-17 08:25:54miss-islingtonsetmessages: + msg364394
2020-03-17 08:25:37miss-islingtonsetmessages: + msg364393
2020-03-17 08:20:10miss-islingtonsetpull_requests: + pull_request18392
2020-03-17 08:20:02miss-islingtonsetnosy: + miss-islington
pull_requests: + pull_request18391
2020-03-17 08:19:35serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg364392
2020-03-16 05:25:06ZackerySpytzsetkeywords: + patch
stage: patch review
pull_requests: + pull_request18374
2020-03-16 05:23:17ZackerySpytzcreate