[Python-checkins] cpython (merge 3.4 -> default): Merge typo fix from 3.4

zach.ware python-checkins at python.org
Fri Apr 18 16:24:00 CEST 2014


http://hg.python.org/cpython/rev/00488e3cdc36
changeset:   90396:00488e3cdc36
parent:      90394:4abd734cf1fb
parent:      90395:57f914880078
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Fri Apr 18 09:23:35 2014 -0500
summary:
  Merge typo fix from 3.4

files:
  Objects/typeobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/typeobject.c b/Objects/typeobject.c
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -6280,7 +6280,7 @@
            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,
             "@"),

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list