From: Zachary Ware Date: Fri, 18 Apr 2014 14:14:31 +0000 (-0500) Subject: Fix a typo in the signature for object.__ge__ X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea42b4cc807e3d16df6e54b57f81cfd37e4087d5;p=python Fix a typo in the signature for object.__ge__ --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index c21b397c04..8a12547369 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -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,