diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-16 19:23:55 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-16 19:23:55 (GMT) |
commit | 5bf1ecd503c77880ca45d67076907edf1d4d8d65 (patch) | |
tree | 40895605498d16ad4adee8ce161425c0cb6ee5ca /Doc/api/init.tex | |
parent | ab9b238cedc21da5be6819145a997a83c3bc2d7c (diff) | |
download | cpython-5bf1ecd503c77880ca45d67076907edf1d4d8d65.zip cpython-5bf1ecd503c77880ca45d67076907edf1d4d8d65.tar.gz cpython-5bf1ecd503c77880ca45d67076907edf1d4d8d65.tar.bz2 |
Update the description of PyTrace_EXCEPT.
Diffstat (limited to 'Doc/api/init.tex')
-rw-r--r-- | Doc/api/init.tex | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Doc/api/init.tex b/Doc/api/init.tex index 890ca0d..5066c5c 100644 --- a/Doc/api/init.tex +++ b/Doc/api/init.tex @@ -708,11 +708,14 @@ previous versions. \begin{cvardesc}{int}{PyTrace_EXCEPT} The value of the \var{what} parameter to a \ctype{Py_tracefunc} - function when an exception has been raised by Python code as the - result of an operation. The operation may have explictly intended - to raise the operation (as with a \keyword{raise} statement), or may - have triggered an exception in the runtime as a result of the - specific operation. + function when an exception has been raised. The callback function + is called with this value for \var{what} when after any bytecode is + processed after which the exception becomes set within the frame + being executed. The effect of this is that as exception propogation + causes the Python stack to unwind, the callback is called upon + return to each frame as the exception propogates. Only trace + functions receives these events; they are not needed by the + profiler. \end{cvardesc} \begin{cvardesc}{int}{PyTrace_LINE} |