[Python-checkins] r56280 - python/trunk/Include/opcode.h

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


Author: georg.brandl
Date: Wed Jul 11 21:41:49 2007
New Revision: 56280

Modified:
   python/trunk/Include/opcode.h
Log:
Fix #1752132: wrong comment in opcode description.


Modified: python/trunk/Include/opcode.h
==============================================================================
--- python/trunk/Include/opcode.h	(original)
+++ python/trunk/Include/opcode.h	Wed Jul 11 21:41:49 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