Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ea42b4c

Browse files
committed
Fix a typo in the signature for object.__ge__
1 parent 5edbb7b commit ea42b4c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/typeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6180,7 +6180,7 @@ static slotdef slotdefs[] = {
61806180
TPSLOT("__gt__", tp_richcompare, slot_tp_richcompare, richcmp_gt,
61816181
"__gt__($self, value, /)\n--\n\nReturn self>value."),
61826182
TPSLOT("__ge__", tp_richcompare, slot_tp_richcompare, richcmp_ge,
6183-
"__ge__=($self, value, /)\n--\n\nReturn self>=value."),
6183+
"__ge__($self, value, /)\n--\n\nReturn self>=value."),
61846184
TPSLOT("__iter__", tp_iter, slot_tp_iter, wrap_unaryfunc,
61856185
"__iter__($self, /)\n--\n\nImplement iter(self)."),
61866186
TPSLOT("__next__", tp_iternext, slot_tp_iternext, wrap_next,

0 commit comments

Comments
 (0)