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: Fix a param error in exceptions.rst
Type: behavior Stage: resolved
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, miss-islington, shihai1991, xiang.zhang
Priority: normal Keywords: patch

Created on 2019-06-28 17:00 by shihai1991, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 14453 merged shihai1991, 2019-06-28 17:04
PR 14565 merged miss-islington, 2019-07-03 01:56
PR 14566 merged miss-islington, 2019-07-03 01:56
Messages (4)
msg346836 - (view) Author: Hai Shi (shihai1991) * (Python triager) Date: 2019-06-28 17:00
Due to https://github.com/python/cpython/blob/master/Python/errors.c#L845-L846,
`PyObject* PyErr_SetImportErrorSubclass(PyObject *msg, PyObject *name, PyObject *path)` should be  `PyObject* PyErr_SetImportErrorSubclass(PyObject *exception, PyObject *msg, PyObject *name, PyObject *path)`
msg347174 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2019-07-03 01:56
New changeset aeecf380660ea459d85bb5f59d76bb54f757b5be by Xiang Zhang (Hai Shi) in branch 'master':
bpo-37441: Fix wrong PyErr_SetImportErrorSubclass signature in doc (GH-14453)
https://github.com/python/cpython/commit/aeecf380660ea459d85bb5f59d76bb54f757b5be
msg347175 - (view) Author: miss-islington (miss-islington) Date: 2019-07-03 02:03
New changeset 6323ac1dd49ddbd935ac3354cc5d792c743e7018 by Miss Islington (bot) in branch '3.7':
bpo-37441: Fix wrong PyErr_SetImportErrorSubclass signature in doc (GH-14453)
https://github.com/python/cpython/commit/6323ac1dd49ddbd935ac3354cc5d792c743e7018
msg347177 - (view) Author: miss-islington (miss-islington) Date: 2019-07-03 02:04
New changeset b8e198a5d09ca876b87baaf6efd2b2e7c9e3a0b3 by Miss Islington (bot) in branch '3.8':
bpo-37441: Fix wrong PyErr_SetImportErrorSubclass signature in doc (GH-14453)
https://github.com/python/cpython/commit/b8e198a5d09ca876b87baaf6efd2b2e7c9e3a0b3
History
Date User Action Args
2022-04-11 14:59:17adminsetgithub: 81622
2019-07-03 02:23:02xiang.zhangsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-07-03 02:04:33miss-islingtonsetmessages: + msg347177
2019-07-03 02:03:02miss-islingtonsetnosy: + miss-islington
messages: + msg347175
2019-07-03 01:56:28miss-islingtonsetpull_requests: + pull_request14385
2019-07-03 01:56:23xiang.zhangsetnosy: + xiang.zhang
messages: + msg347174
2019-07-03 01:56:20miss-islingtonsetpull_requests: + pull_request14384
2019-06-28 17:04:57shihai1991setkeywords: + patch
stage: patch review
pull_requests: + pull_request14270
2019-06-28 17:00:06shihai1991create