[Python-checkins] python/dist/src/Include eval.h,2.16,2.17
gvanrossum@users.sourceforge.net
gvanrossum@users.sourceforge.net
Wed, 09 Apr 2003 12:06:49 -0700
Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1:/tmp/cvs-serv20970/Include
Modified Files:
eval.h
Log Message:
- New function sys.call_tracing() allows pdb to debug code
recursively.
- pdb has a new command, "debug", which lets you step through
arbitrary code from the debugger's (pdb) prompt.
Index: eval.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/eval.h,v
retrieving revision 2.16
retrieving revision 2.17
diff -C2 -d -r2.16 -r2.17
*** eval.h 12 Aug 2002 07:21:56 -0000 2.16
--- eval.h 9 Apr 2003 19:06:16 -0000 2.17
***************
*** 18,21 ****
--- 18,23 ----
PyObject *closure);
+ PyAPI_FUNC(PyObject *) _PyEval_CallTracing(PyObject *func, PyObject *args);
+
#ifdef __cplusplus
}