summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-04-18 14:14:31 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-04-18 14:14:31 (GMT)
commitea42b4cc807e3d16df6e54b57f81cfd37e4087d5 (patch)
tree9744383895a708da0c697df01c42070ac6f487c0 /Objects
parent5edbb7b7a431226488eb8bedf404d96b190d76cf (diff)
downloadcpython-ea42b4cc807e3d16df6e54b57f81cfd37e4087d5.zip
cpython-ea42b4cc807e3d16df6e54b57f81cfd37e4087d5.tar.gz
cpython-ea42b4cc807e3d16df6e54b57f81cfd37e4087d5.tar.bz2
Fix a typo in the signature for object.__ge__
Diffstat (limited to 'Objects')
-rw-r--r--Objects/typeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index c21b397..8a12547 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,