mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	
							parent
							
								
									9c1dfe21fd
								
							
						
					
					
						commit
						757b62493b
					
				
					 1 changed files with 8 additions and 2 deletions
				
			
		
							
								
								
									
										10
									
								
								Python/executor_cases.c.h
									
										
									
										generated
									
									
									
								
							
							
						
						
									
										10
									
								
								Python/executor_cases.c.h
									
										
									
										generated
									
									
									
								
							|  | @ -3984,8 +3984,14 @@ | ||||||
|         case _CHECK_STACK_SPACE_OPERAND: { |         case _CHECK_STACK_SPACE_OPERAND: { | ||||||
|             uint32_t framesize = (uint32_t)CURRENT_OPERAND(); |             uint32_t framesize = (uint32_t)CURRENT_OPERAND(); | ||||||
|             assert(framesize <= INT_MAX); |             assert(framesize <= INT_MAX); | ||||||
|             if (!_PyThreadState_HasStackSpace(tstate, framesize)) JUMP_TO_JUMP_TARGET(); |             if (!_PyThreadState_HasStackSpace(tstate, framesize)) { | ||||||
|             if (tstate->py_recursion_remaining <= 1) JUMP_TO_JUMP_TARGET(); |                 UOP_STAT_INC(uopcode, miss); | ||||||
|  |                 JUMP_TO_JUMP_TARGET(); | ||||||
|  |             } | ||||||
|  |             if (tstate->py_recursion_remaining <= 1) { | ||||||
|  |                 UOP_STAT_INC(uopcode, miss); | ||||||
|  |                 JUMP_TO_JUMP_TARGET(); | ||||||
|  |             } | ||||||
|             break; |             break; | ||||||
|         } |         } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Erlend E. Aasland
						Erlend E. Aasland