diff options
author | Georg Brandl <georg@python.org> | 2007-07-11 19:41:49 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-07-11 19:41:49 (GMT) |
commit | c6057c7812ac3dd05a80255b4750f606a0f79f81 (patch) | |
tree | cf267e417cce1dec604e4b417dd96bc926a941df /Include | |
parent | 9cca918db8077edb82b6ae0f4d9b7b3f2cb16244 (diff) | |
download | cpython-c6057c7812ac3dd05a80255b4750f606a0f79f81.zip cpython-c6057c7812ac3dd05a80255b4750f606a0f79f81.tar.gz cpython-c6057c7812ac3dd05a80255b4750f606a0f79f81.tar.bz2 |
Fix #1752132: wrong comment in opcode description.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/opcode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/opcode.h b/Include/opcode.h index d8cb2cd..2816369 100644 --- a/Include/opcode.h +++ b/Include/opcode.h @@ -112,7 +112,7 @@ extern "C" { #define LOAD_GLOBAL 116 /* Index in name list */ #define CONTINUE_LOOP 119 /* Start of loop (absolute) */ -#define SETUP_LOOP 120 /* Target address (absolute) */ +#define SETUP_LOOP 120 /* Target address (relative) */ #define SETUP_EXCEPT 121 /* "" */ #define SETUP_FINALLY 122 /* "" */ |