From ea42b4cc807e3d16df6e54b57f81cfd37e4087d5 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Fri, 18 Apr 2014 09:14:31 -0500 Subject: [PATCH] Fix a typo in the signature for object.__ge__ --- Objects/typeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/typeobject.c b/Objects/typeobject.c index c21b397c04e..8a125473693 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,