mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	gh-106149: fix comment on stackdepth of generators (#107321)
This commit is contained in:
		
							parent
							
								
									2ad699002e
								
							
						
					
					
						commit
						507d8bc39a
					
				
					 1 changed files with 3 additions and 2 deletions
				
			
		|  | @ -7735,8 +7735,9 @@ optimize_and_assemble_code_unit(struct compiler_unit *u, PyObject *const_cache, | |||
|     /* prepare_localsplus adds instructions for generators that push
 | ||||
|      * and pop an item on the stack. This assertion makes sure there | ||||
|      * is space on the stack for that. | ||||
|      * It should always be true, because at least one expression is | ||||
|      * required to turn a function into a generator. | ||||
|      * It should always be true, because a generator must have at | ||||
|      * least one expression or call to INTRINSIC_STOPITERATION_ERROR, | ||||
|      * which requires stackspace. | ||||
|      */ | ||||
|     assert(!(IS_GENERATOR(code_flags) && stackdepth == 0)); | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Irit Katriel
						Irit Katriel