Skip to content

Commit

Permalink
Fix a typo in the signature for object.__ge__
Browse files Browse the repository at this point in the history
  • Loading branch information
zware committed Apr 18, 2014
1 parent 5edbb7b commit ea42b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/typeobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit ea42b4c

Please sign in to comment.