[Python-checkins] cpython (3.4): Fix a typo in the signature for object.__ge__

zach.ware python-checkins at python.org
Fri Apr 18 16:17:44 CEST 2014


http://hg.python.org/cpython/rev/7b7885a1573c
changeset:   90393:7b7885a1573c
branch:      3.4
parent:      90391:679319e3f42b
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Fri Apr 18 09:14:31 2014 -0500
summary:
  Fix a typo in the signature for object.__ge__

files:
  Objects/typeobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/typeobject.c b/Objects/typeobject.c
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -6180,7 +6180,7 @@
     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,

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list