[issue5112] Incorrect documentation for PyErr_BadInternalCall

2009-01-31 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r69140. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue5112] Incorrect documentation for PyErr_BadInternalCall

2009-01-30 Thread Michael Welsh Duggan
New submission from Michael Welsh Duggan : Documentation says that this call is shorthand for PyErr_SetString(PyExc_TypeError, message), but is instead shorthand for PyErr_SetString(PyExc_SystemError, message). -- assignee: georg.brandl components: Documentation messages: 80831 nosy: geo