Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix gdbinit to handle new types/APIs. | Neal Norwitz | 2008-08-24 | 1 | -4/+4 |
| | |||||
* | Get gdb macros working with unicode and PyVarObject change | Neal Norwitz | 2007-08-27 | 1 | -3/+3 |
| | |||||
* | break sets a breakpoint rather than stopping the loop. | Neal Norwitz | 2005-09-05 | 1 | -2/+3 |
| | | | | | | | It *appears* a flag is necessary instead. This was tested in gdb 6.0. Backport candidate | ||||
* | Fix pystack command. | Neil Schemenauer | 2005-08-13 | 1 | -1/+1 |
| | |||||
* | Add definitions for "up" and "down" commands that print/display the current | Skip Montanaro | 2005-01-08 | 1 | -2/+52 |
| | | | | | | | | | | Python file/line when the current C execution frame is inside PyEval_EvalFrame. These are commented out by default because GDB sometimes crashes as a result (seems like a GDB bug). Add a pyframe command that displays the current Python stack frame. If the marked lines are uncommented, it will also cause Emacs/XEmacs to display the current file/line. | ||||
* | split functionality into pystack and pystackv commands. The former will | Skip Montanaro | 2004-11-17 | 1 | -4/+19 |
| | | | | | | | work with core dumps because it avoids calling any Python API routines. The latter prints all the local variable values as well as the stack frames but won't work with core dumps because it relies on _PyObject_Dump to print variables. | ||||
* | eval_frame now has a PyAPI-style name | Michael W. Hudson | 2004-08-07 | 1 | -1/+1 |
| | |||||
* | It would help if I deleted the old pystack! | Skip Montanaro | 2004-04-02 | 1 | -23/+11 |
| | | | | Also, move pystack comment down next to it | ||||
* | include local variables when dumping Python stack trace | Skip Montanaro | 2004-04-02 | 1 | -9/+36 |
| | |||||
* | Add pystack definition to Misc/gdbinit with some explanation of its behavior | Skip Montanaro | 2004-03-01 | 1 | -0/+23 |
| | | | | | and add flag comments to ceval.c and main.c alerting people to the coupling between pystack and the layout of those files. | ||||
* | A helper to dump info about the current frame, | Jeremy Hylton | 2003-10-03 | 1 | -0/+9 |
| | | | | assuming it is the variable f. | ||||
* | PyObject_Dump() -> _PyObject_Dump() | Barry Warsaw | 2001-01-24 | 1 | -2/+2 |
| | | | | PyGC_Dump() -> _PyGC_Dump() | ||||
* | A few useful definitions if you're using gdb. Copy to ~/.gdbinit to | Barry Warsaw | 2001-01-23 | 1 | -0/+27 |
pull it in automatically. |