summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-04-18 14:17:04 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-04-18 14:17:04 (GMT)
commit07b4c5e1f6a97ce4b8b0caafac71f3685b81bdcd (patch)
tree2956424175d68ace74b5d1948c53f078748999c4 /Objects
parente83236f396b39f58e09d012d4a73ccb044f4c350 (diff)
parentea42b4cc807e3d16df6e54b57f81cfd37e4087d5 (diff)
downloadcpython-07b4c5e1f6a97ce4b8b0caafac71f3685b81bdcd.zip
cpython-07b4c5e1f6a97ce4b8b0caafac71f3685b81bdcd.tar.gz
cpython-07b4c5e1f6a97ce4b8b0caafac71f3685b81bdcd.tar.bz2
Merge typo fix from 3.4
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 6129523..6399115 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -6184,7 +6184,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,