mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 13:41:24 +00:00 
			
		
		
		
	Fix compiler warning (int vs Py_ssize_t mismatch
This commit is contained in:
		
							parent
							
								
									87f2875252
								
							
						
					
					
						commit
						a361bd8dce
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -2141,7 +2141,7 @@ builtin_zip(PyObject *self, PyObject *args) | |||
| 		if (it == NULL) { | ||||
| 			if (PyErr_ExceptionMatches(PyExc_TypeError)) | ||||
| 				PyErr_Format(PyExc_TypeError, | ||||
| 				    "zip argument #%d must support iteration", | ||||
| 				    "zip argument #%zd must support iteration", | ||||
| 				    i+1); | ||||
| 			goto Fail_ret_itlist; | ||||
| 		} | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Neal Norwitz
						Neal Norwitz