[Python-checkins] CVS: python/dist/src/Objects object.c,2.87,2.88
Vladimir Marangozov
python-dev@python.org
2000年7月12日 16:39:40 -0700
Update of /cvsroot/python/python/dist/src/Objects
In directory slayer.i.sourceforge.net:/tmp/cvs-serv17806
Modified Files:
object.c
Log Message:
Propagate the current exception in get_inprogress_dict() -- it doesn't
need to be cleared.
Index: object.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/object.c,v
retrieving revision 2.87
retrieving revision 2.88
diff -C2 -r2.87 -r2.88
*** object.c 2000年07月12日 12:56:19 2.87
--- object.c 2000年07月12日 23:39:38 2.88
***************
*** 357,361 ****
inprogress = PyDict_GetItem(tstate_dict, _PyCompareState_Key);
if (inprogress == NULL) {
- PyErr_Clear();
inprogress = PyDict_New();
if (inprogress == NULL)
--- 357,360 ----