[Python-checkins] python/dist/src/Python ceval.c,2.377,2.378

montanaro at users.sourceforge.net montanaro at users.sourceforge.net
Mon Mar 1 10:44:08 EST 2004


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28338/Python

Modified Files:
	ceval.c 
Log Message:
Add pystack definition to Misc/gdbinit with some explanation of its behavior
and add flag comments to ceval.c and main.c alerting people to the coupling
between pystack and the layout of those files.


Index: ceval.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/ceval.c,v
retrieving revision 2.377
retrieving revision 2.378
diff -C2 -d -r2.377 -r2.378
*** ceval.c	12 Feb 2004 15:28:26 -0000	2.377
--- ceval.c	1 Mar 2004 15:44:05 -0000	2.378
***************
*** 2446,2449 ****
--- 2446,2453 ----
  }
  
+ /* this is gonna seem *real weird*, but if you put some other code between
+    eval_frame() and PyEval_EvalCodeEx() you will need to adjust the test in
+    the if statement in Misc/gdbinit:ppystack */
+ 
  PyObject *
  PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,




More information about the Python-checkins mailing list