[Python-checkins] r56281 - python/branches/release25-maint/Include/opcode.h

georg.brandl python-checkins at python.org
Wed Jul 11 21:41:53 CEST 2007


Author: georg.brandl
Date: Wed Jul 11 21:41:53 2007
New Revision: 56281

Modified:
   python/branches/release25-maint/Include/opcode.h
Log:
Fix #1752132: wrong comment in opcode description.
 (backport from rev. 56280)

Modified: python/branches/release25-maint/Include/opcode.h
==============================================================================
--- python/branches/release25-maint/Include/opcode.h	(original)
+++ python/branches/release25-maint/Include/opcode.h	Wed Jul 11 21:41:53 2007
@@ -112,7 +112,7 @@
 #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	/* "" */
 


More information about the Python-checkins mailing list