commit | 2a216794f044ea8ff3a8880e9a978c5c912d23d1 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Thu Nov 18 06:50:19 2004 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Thu Nov 18 06:50:19 2004 +0000 |
tree | 2e0cc2b30ededf10a49ad5539419c04c9c1e9e5d | |
parent | 83e4a146dbc8bd66af8e691706292bc08ef09f56 [diff] |
SF bug #1066036: Typo about PyErr_WriteUnraisable()
diff --git a/Doc/ext/newtypes.tex b/Doc/ext/newtypes.tex index c0ec264..cd2c045 100644 --- a/Doc/ext/newtypes.tex +++ b/Doc/ext/newtypes.tex
@@ -1039,7 +1039,7 @@ cbresult = PyObject_CallObject(self->my_callback, NULL); if (cbresult == NULL) - PyErr_WriteUnraisable(); + PyErr_WriteUnraisable(self->my_callback); else Py_DECREF(cbresult);