summaryrefslogtreecommitdiff
path: root/Include
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-02-01 22:48:12 +0000
committerJeremy Hylton <jeremy@alum.mit.edu>2001-02-01 22:48:12 +0000
commit54b3056b7f777a63df3f8ed2cc5a6fa09e385b90 (patch)
tree3059b8bbfa3adfda2c9f0977d14bd490dff7d7da /Include
parenta7927305bc7277304ea584bbb16ed295d255b92b (diff)
downloadcpython-54b3056b7f777a63df3f8ed2cc5a6fa09e385b90.tar.gz
Allow 'continue' inside 'try' clause
SF patch 102989 by Thomas Wouters
Diffstat (limited to 'Include')
-rw-r--r--Include/opcode.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/opcode.h b/Include/opcode.h
index 89813ef0fa..546ad08856 100644
--- a/Include/opcode.h
+++ b/Include/opcode.h
@@ -104,6 +104,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_EXCEPT 121 /* "" */
#define SETUP_FINALLY 122 /* "" */