[Python-checkins] cpython (merge 3.4 -> default): Merge typo fix from 3.4

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


http://hg.python.org/cpython/rev/4abd734cf1fb
changeset:   90394:4abd734cf1fb
parent:      90392:7433f7bce880
parent:      90393:7b7885a1573c
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Fri Apr 18 09:17:04 2014 -0500
summary:
  Merge typo fix from 3.4

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
@@ -6184,7 +6184,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