diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2014-04-18 14:23:35 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2014-04-18 14:23:35 (GMT) |
commit | 9996a7d21b9635bcd4757be03fc40615c177ef70 (patch) | |
tree | a9b784d2e63338b4c1c968625e4a61b346dcff2f /Objects | |
parent | 07b4c5e1f6a97ce4b8b0caafac71f3685b81bdcd (diff) | |
parent | 715ef02ddc9c9d175a324dbeddbb7a1c750238ee (diff) | |
download | cpython-9996a7d21b9635bcd4757be03fc40615c177ef70.zip cpython-9996a7d21b9635bcd4757be03fc40615c177ef70.tar.gz cpython-9996a7d21b9635bcd4757be03fc40615c177ef70.tar.bz2 |
Merge typo fix from 3.4
Diffstat (limited to 'Objects')
-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 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, "@"), |