summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2014-04-18 14:23:35 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2014-04-18 14:23:35 (GMT)
commit9996a7d21b9635bcd4757be03fc40615c177ef70 (patch)
treea9b784d2e63338b4c1c968625e4a61b346dcff2f
parent07b4c5e1f6a97ce4b8b0caafac71f3685b81bdcd (diff)
parent715ef02ddc9c9d175a324dbeddbb7a1c750238ee (diff)
downloadcpython-9996a7d21b9635bcd4757be03fc40615c177ef70.zip
cpython-9996a7d21b9635bcd4757be03fc40615c177ef70.tar.gz
cpython-9996a7d21b9635bcd4757be03fc40615c177ef70.tar.bz2
Merge typo fix from 3.4
-rw-r--r--Objects/typeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index 6399115..be9747a 100644
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -6280,7 +6280,7 @@ static slotdef slotdefs[] = {
slot_nb_inplace_true_divide, wrap_binaryfunc, "/"),
NBSLOT("__index__", nb_index, slot_nb_index, wrap_unaryfunc,
"__index__($self, /)\n--\n\n"
- "Return self converted to an integer, if self is suitable"
+ "Return self converted to an integer, if self is suitable "
"for use as an index into a list."),
BINSLOT("__matmul__", nb_matrix_multiply, slot_nb_matrix_multiply,
"@"),