#6798: fix wrong docs for the arguments to several trace events.

This commit is contained in:
Georg Brandl 2010-10-15 16:42:37 +00:00
parent d2413428dc
commit d0b0e1d869
2 changed files with 10 additions and 8 deletions

View file

@ -929,13 +929,14 @@ Python-level trace functions in previous versions.
+------------------------------+--------------------------------------+
| :const:`PyTrace_LINE` | Always *NULL*. |
+------------------------------+--------------------------------------+
| :const:`PyTrace_RETURN` | Value being returned to the caller. |
| :const:`PyTrace_RETURN` | Value being returned to the caller, |
| | or *NULL* if caused by an exception. |
+------------------------------+--------------------------------------+
| :const:`PyTrace_C_CALL` | Name of function being called. |
| :const:`PyTrace_C_CALL` | Function object being called. |
+------------------------------+--------------------------------------+
| :const:`PyTrace_C_EXCEPTION` | Always *NULL*. |
| :const:`PyTrace_C_EXCEPTION` | Function object being called. |
+------------------------------+--------------------------------------+
| :const:`PyTrace_C_RETURN` | Always *NULL*. |
| :const:`PyTrace_C_RETURN` | Function object being called. |
+------------------------------+--------------------------------------+