]> granicus.if.org Git - python/commitdiff
Update comment: SAVE_EXC_STATE and SWAP_EXC_STATE macroses are saave_exc_state and...
authorAndrew Svetlov <andrew.svetlov@gmail.com>
Wed, 5 Dec 2012 15:59:10 +0000 (17:59 +0200)
committerAndrew Svetlov <andrew.svetlov@gmail.com>
Wed, 5 Dec 2012 15:59:10 +0000 (17:59 +0200)
Include/frameobject.h

index ac2f790d13d7bce278b74854be65dbe89b831b10..33f73af52a3c8b7145f24042d49309b558ac1788 100644 (file)
@@ -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;