mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 11:49:12 +00:00 
			
		
		
		
	Clean up error messages raised by save_reduce in _pickle.
This commit is contained in:
		
							parent
							
								
									6eea818423
								
							
						
					
					
						commit
						00d83f2d05
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -2958,7 +2958,7 @@ save_reduce(PicklerObject *self, PyObject *args, PyObject *obj)
 | 
				
			||||||
    if (listitems == Py_None)
 | 
					    if (listitems == Py_None)
 | 
				
			||||||
        listitems = NULL;
 | 
					        listitems = NULL;
 | 
				
			||||||
    else if (!PyIter_Check(listitems)) {
 | 
					    else if (!PyIter_Check(listitems)) {
 | 
				
			||||||
        PyErr_Format(PicklingError, "Fourth element of tuple"
 | 
					        PyErr_Format(PicklingError, "fourth element of the tuple "
 | 
				
			||||||
                     "returned by __reduce__ must be an iterator, not %s",
 | 
					                     "returned by __reduce__ must be an iterator, not %s",
 | 
				
			||||||
                     Py_TYPE(listitems)->tp_name);
 | 
					                     Py_TYPE(listitems)->tp_name);
 | 
				
			||||||
        return -1;
 | 
					        return -1;
 | 
				
			||||||
| 
						 | 
					@ -2967,7 +2967,7 @@ save_reduce(PicklerObject *self, PyObject *args, PyObject *obj)
 | 
				
			||||||
    if (dictitems == Py_None)
 | 
					    if (dictitems == Py_None)
 | 
				
			||||||
        dictitems = NULL;
 | 
					        dictitems = NULL;
 | 
				
			||||||
    else if (!PyIter_Check(dictitems)) {
 | 
					    else if (!PyIter_Check(dictitems)) {
 | 
				
			||||||
        PyErr_Format(PicklingError, "Fifth element of tuple"
 | 
					        PyErr_Format(PicklingError, "fifth element of the tuple "
 | 
				
			||||||
                     "returned by __reduce__ must be an iterator, not %s",
 | 
					                     "returned by __reduce__ must be an iterator, not %s",
 | 
				
			||||||
                     Py_TYPE(dictitems)->tp_name);
 | 
					                     Py_TYPE(dictitems)->tp_name);
 | 
				
			||||||
        return -1;
 | 
					        return -1;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue