mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Fixed refactoring bug in dd046963bd42 (issue27129).
This commit is contained in:
		
							parent
							
								
									2a9f5edeeb
								
							
						
					
					
						commit
						a1e9ab34a9
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -475,7 +475,7 @@ PyCode_Optimize(PyObject *code, PyObject* consts, PyObject *names, | |||
|     CONST_STACK_CREATE(); | ||||
| 
 | ||||
|     for (i=find_op(codestr, 0) ; i<codelen ; i=nexti) { | ||||
|         opcode = codestr[i]; | ||||
|         opcode = _Py_OPCODE(codestr[i]); | ||||
|         op_start = i; | ||||
|         while (op_start >= 1 && _Py_OPCODE(codestr[op_start-1]) == EXTENDED_ARG) { | ||||
|             op_start--; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Serhiy Storchaka
						Serhiy Storchaka