[Python-checkins] python/dist/src/Python pythonrun.c,2.153.6.3,2.153.6.4
nnorwitz@users.sourceforge.net
nnorwitz@users.sourceforge.net
2002年11月19日 18:38:12 -0800
Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1:/tmp/cvs-serv27740/Python
Modified Files:
Tag: release22-maint
pythonrun.c
Log Message:
Backport Neil Schemenauer's fix for SF #529750,
Circular reference makes Py_Init crash
Modified to keep _Py_ResetReferences() API, but make it a no-op.
It's not called now (for 2.3 it was completely removed).
Index: pythonrun.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/pythonrun.c,v
retrieving revision 2.153.6.3
retrieving revision 2.153.6.4
diff -C2 -d -r2.153.6.3 -r2.153.6.4
*** pythonrun.c 8 Apr 2002 17:00:54 -0000 2.153.6.3
--- pythonrun.c 20 Nov 2002 02:38:10 -0000 2.153.6.4
***************
*** 278,285 ****
call_ll_exitfuncs();
-
- #ifdef Py_TRACE_REFS
- _Py_ResetReferences();
- #endif /* Py_TRACE_REFS */
}
--- 278,281 ----