summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-05 15:59:29 (GMT)
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-12-05 15:59:29 (GMT)
commit746d0434aed413a218e1516a9f84ad4642c9e27f (patch)
tree061b8fdddc3633202dbb27bb79b7f9c46bd97f7d
parent34cf090e8c72ade475160b6c2f280e40dcba71ea (diff)
parentc37cfd67097f78617213693a3be918aaf10cc3d6 (diff)
downloadcpython-746d0434aed413a218e1516a9f84ad4642c9e27f.zip
cpython-746d0434aed413a218e1516a9f84ad4642c9e27f.tar.gz
cpython-746d0434aed413a218e1516a9f84ad4642c9e27f.tar.bz2
Update comment: SAVE_EXC_STATE and SWAP_EXC_STATE macroses are saave_exc_state and swap_exc_state functions now.
-rw-r--r--Include/frameobject.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h
index ac2f790..33f73af 100644
--- a/Include/frameobject.h
+++ b/Include/frameobject.h
@@ -33,8 +33,8 @@ typedef struct _frame {
frame (which shouldn't be impacted when the generator "yields"
from an except handler).
These three fields exist exactly for that, and are unused for
- non-generator frames. See the SAVE_EXC_STATE and SWAP_EXC_STATE
- macros in ceval.c for details of their use. */
+ non-generator frames. See the save_exc_state and swap_exc_state
+ functions in ceval.c for details of their use. */
PyObject *f_exc_type, *f_exc_value, *f_exc_traceback;
PyThreadState *f_tstate;