mirror of
				https://github.com/python/cpython.git
				synced 2025-10-30 21:21:22 +00:00 
			
		
		
		
	Fix a typo in the signature for object.__ge__
This commit is contained in:
		
							parent
							
								
									5edbb7b7a4
								
							
						
					
					
						commit
						ea42b4cc80
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -6180,7 +6180,7 @@ static slotdef slotdefs[] = { | |||
|     TPSLOT("__gt__", tp_richcompare, slot_tp_richcompare, richcmp_gt, | ||||
|            "__gt__($self, value, /)\n--\n\nReturn self>value."), | ||||
|     TPSLOT("__ge__", tp_richcompare, slot_tp_richcompare, richcmp_ge, | ||||
|            "__ge__=($self, value, /)\n--\n\nReturn self>=value."), | ||||
|            "__ge__($self, value, /)\n--\n\nReturn self>=value."), | ||||
|     TPSLOT("__iter__", tp_iter, slot_tp_iter, wrap_unaryfunc, | ||||
|            "__iter__($self, /)\n--\n\nImplement iter(self)."), | ||||
|     TPSLOT("__next__", tp_iternext, slot_tp_iternext, wrap_next, | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Zachary Ware
						Zachary Ware