mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Correct a typo during previous checkin.
This commit is contained in:
		
							parent
							
								
									a4db68622c
								
							
						
					
					
						commit
						a073e33746
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -296,7 +296,7 @@ do_mkvalue(const char **p_format, va_list *p_va, int flags) | ||||||
| 			int i = va_arg(*p_va, int); | 			int i = va_arg(*p_va, int); | ||||||
| 			if (i < 0 || i > PyUnicode_GetMax()) { | 			if (i < 0 || i > PyUnicode_GetMax()) { | ||||||
| 				PyErr_SetString(PyExc_OverflowError, | 				PyErr_SetString(PyExc_OverflowError, | ||||||
| 				                "%c arg not in range(0x110000)"; | 				                "%c arg not in range(0x110000)"); | ||||||
| 				return NULL; | 				return NULL; | ||||||
| 			} | 			} | ||||||
| 			return PyUnicode_FromOrdinal(i); | 			return PyUnicode_FromOrdinal(i); | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Amaury Forgeot d'Arc
						Amaury Forgeot d'Arc