]> granicus.if.org Git - python/commitdiff
Fix a typo in the signature for object.__ge__
authorZachary Ware <zachary.ware@gmail.com>
Fri, 18 Apr 2014 14:14:31 +0000 (09:14 -0500)
committerZachary Ware <zachary.ware@gmail.com>
Fri, 18 Apr 2014 14:14:31 +0000 (09:14 -0500)
Objects/typeobject.c

index c21b397c04e9c7422e8b6fedb7b8a0ba686cc7df..8a1254736932c0e2e92001e9ac2a4f95e48cb580 100644 (file)
@@ -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,