mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	Added BUILD_SLICE opcode.
This commit is contained in:
		
							parent
							
								
									ae8a99e3f5
								
							
						
					
					
						commit
						db3b04104a
					
				
					 1 changed files with 1 additions and 0 deletions
				
			
		| 
						 | 
					@ -139,6 +139,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 | 
				
			||||||
#define RAISE_VARARGS	130	/* Number of raise arguments (1, 2 or 3) */
 | 
					#define RAISE_VARARGS	130	/* Number of raise arguments (1, 2 or 3) */
 | 
				
			||||||
#define CALL_FUNCTION	131	/* #args + (#kwargs<<8) */
 | 
					#define CALL_FUNCTION	131	/* #args + (#kwargs<<8) */
 | 
				
			||||||
#define MAKE_FUNCTION	132	/* #defaults */
 | 
					#define MAKE_FUNCTION	132	/* #defaults */
 | 
				
			||||||
 | 
					#define BUILD_SLICE 	133	/* Number of items */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* Comparison operator codes (argument to COMPARE_OP) */
 | 
					/* Comparison operator codes (argument to COMPARE_OP) */
 | 
				
			||||||
enum cmp_op {LT, LE, EQ, NE, GT, GE, IN, NOT_IN, IS, IS_NOT, EXC_MATCH, BAD};
 | 
					enum cmp_op {LT, LE, EQ, NE, GT, GE, IN, NOT_IN, IS, IS_NOT, EXC_MATCH, BAD};
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue