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 example code for PyErr_Fetch
Type: Stage: resolved
Components: Documentation Versions: Python 3.7, Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: docs@python, martin.panter, python-dev, serhiy.storchaka, yan12125
Priority: normal Keywords: patch

Created on 2016-12-25 13:52 by yan12125, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
PyErr_Fetch-fix.patch yan12125, 2016-12-25 13:52 review
Messages (3)
msg283993 - (view) Author: (yan12125) * Date: 2016-12-25 13:52
Remove an extra *

The typo is there in 3.5~3.7 branches. 2.7 branch does not have this example.

Nosy the two major commiters to Python/errors.c
msg283994 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-12-25 14:21
LGTM. Thank you for your contribution Chi Hsuan Yen.
msg283995 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-12-25 14:24
New changeset 34e7b9879e60 by Serhiy Storchaka in branch '3.5':
Issue #29068: Fixed a typo in PyErr_Fetch example.
https://hg.python.org/cpython/rev/34e7b9879e60
History
Date User Action Args
2022-04-11 14:58:41adminsetgithub: 73254
2016-12-25 14:24:58serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: commit review -> resolved
2016-12-25 14:24:34python-devsetnosy: + python-dev
messages: + msg283995
2016-12-25 14:21:12serhiy.storchakasetassignee: docs@python -> serhiy.storchaka
messages: + msg283994
stage: commit review
2016-12-25 13:52:32yan12125create