mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 03:44:55 +00:00 
			
		
		
		
	Fix docstrings for __(get|set|del)slice__ to mention that negative indices are not supported.
This commit is contained in:
		
							parent
							
								
									88957d8d0d
								
							
						
					
					
						commit
						154da9b7e2
					
				
					 1 changed files with 9 additions and 3 deletions
				
			
		| 
						 | 
					@ -4781,11 +4781,17 @@ static slotdef slotdefs[] = {
 | 
				
			||||||
	SQSLOT("__getitem__", sq_item, slot_sq_item, wrap_sq_item,
 | 
						SQSLOT("__getitem__", sq_item, slot_sq_item, wrap_sq_item,
 | 
				
			||||||
	       "x.__getitem__(y) <==> x[y]"),
 | 
						       "x.__getitem__(y) <==> x[y]"),
 | 
				
			||||||
	SQSLOT("__getslice__", sq_slice, slot_sq_slice, wrap_intintargfunc,
 | 
						SQSLOT("__getslice__", sq_slice, slot_sq_slice, wrap_intintargfunc,
 | 
				
			||||||
	       "x.__getslice__(i, j) <==> x[i:j]"),
 | 
						       "x.__getslice__(i, j) <==> x[i:j]\n\
 | 
				
			||||||
 | 
					               \n\
 | 
				
			||||||
 | 
					               Use of negative indices is not supported."),
 | 
				
			||||||
	SQSLOT("__setitem__", sq_ass_item, slot_sq_ass_item, wrap_sq_setitem,
 | 
						SQSLOT("__setitem__", sq_ass_item, slot_sq_ass_item, wrap_sq_setitem,
 | 
				
			||||||
	       "x.__setitem__(i, y) <==> x[i]=y"),
 | 
						       "x.__setitem__(i, y) <==> x[i]=y\n\
 | 
				
			||||||
 | 
					               \n\
 | 
				
			||||||
 | 
					               Use of negative indices is not supported."),
 | 
				
			||||||
	SQSLOT("__delitem__", sq_ass_item, slot_sq_ass_item, wrap_sq_delitem,
 | 
						SQSLOT("__delitem__", sq_ass_item, slot_sq_ass_item, wrap_sq_delitem,
 | 
				
			||||||
	       "x.__delitem__(y) <==> del x[y]"),
 | 
						       "x.__delitem__(y) <==> del x[y]i\n\
 | 
				
			||||||
 | 
					               \n\
 | 
				
			||||||
 | 
					               Use of negative indices is not supported."),
 | 
				
			||||||
	SQSLOT("__setslice__", sq_ass_slice, slot_sq_ass_slice,
 | 
						SQSLOT("__setslice__", sq_ass_slice, slot_sq_ass_slice,
 | 
				
			||||||
	       wrap_intintobjargproc,
 | 
						       wrap_intintobjargproc,
 | 
				
			||||||
	       "x.__setslice__(i, j, y) <==> x[i:j]=y"),
 | 
						       "x.__setslice__(i, j, y) <==> x[i:j]=y"),
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue