diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-04-18 09:23:35 -0500 |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-04-18 09:23:35 -0500 |
commit | 9996a7d21b9635bcd4757be03fc40615c177ef70 (patch) | |
tree | a9b784d2e63338b4c1c968625e4a61b346dcff2f | |
parent | 07b4c5e1f6a97ce4b8b0caafac71f3685b81bdcd (diff) | |
parent | 715ef02ddc9c9d175a324dbeddbb7a1c750238ee (diff) | |
download | cpython-git-9996a7d21b9635bcd4757be03fc40615c177ef70.tar.gz |
Merge typo fix from 3.4
-rw-r--r-- | Objects/typeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 6399115f2f..be9747a166 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, "@"), |