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: Incorrect documentation for PyErr_BadInternalCall
Type: Stage:
Components: Documentation Versions: Python 3.0, Python 2.4, Python 2.7, Python 2.6, Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: benjamin.peterson, georg.brandl, md5i
Priority: normal Keywords:

Created on 2009-01-30 18:41 by md5i, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg80831 - (view) Author: Michael Welsh Duggan (md5i) Date: 2009-01-30 18:41
Documentation says that this call is shorthand for
PyErr_SetString(PyExc_TypeError, message), but is instead shorthand for
PyErr_SetString(PyExc_SystemError, message).
msg80879 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-01-31 16:52
Fixed in r69140.
History
Date User Action Args
2022-04-11 14:56:45adminsetgithub: 49362
2009-01-31 16:52:20benjamin.petersonsetstatus: open -> closed
nosy: + benjamin.peterson
resolution: fixed
messages: + msg80879
2009-01-30 18:41:17md5icreate