[Python-checkins] cpython (merge 3.3 -> default): Update comment: SAVE_EXC_STATE and SWAP_EXC_STATE macroses are saave_exc_state

andrew.svetlov python-checkins at python.org
Wed Dec 5 16:59:40 CET 2012


http://hg.python.org/cpython/rev/ece75a3b942c
changeset:   80733:ece75a3b942c
parent:      80730:4cb84c0fbee2
parent:      80732:2ca476e20f39
user:        Andrew Svetlov <andrew.svetlov at gmail.com>
date:        Wed Dec 05 17:59:29 2012 +0200
summary:
  Update comment: SAVE_EXC_STATE and SWAP_EXC_STATE macroses are saave_exc_state and swap_exc_state functions now.

files:
  Include/frameobject.h |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Include/frameobject.h b/Include/frameobject.h
--- a/Include/frameobject.h
+++ b/Include/frameobject.h
@@ -33,8 +33,8 @@
            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;

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list