[Python-checkins] python/dist/src/Doc/ext newtypes.tex,1.39,1.40

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Thu Nov 18 07:50:22 CET 2004


Update of /cvsroot/python/python/dist/src/Doc/ext
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17942

Modified Files:
	newtypes.tex 
Log Message:
SF bug #1066036:  Typo about PyErr_WriteUnraisable()



Index: newtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ext/newtypes.tex,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- newtypes.tex	15 Jul 2004 04:23:13 -0000	1.39
+++ newtypes.tex	18 Nov 2004 06:50:19 -0000	1.40
@@ -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);
 



More information about the Python-checkins mailing list