]> granicus.if.org Git - python/commitdiff
Fix grammar in doc string, RST markup
authorMartin Panter <vadmium+py@gmail.com>
Tue, 24 Jan 2017 00:30:06 +0000 (00:30 +0000)
committerMartin Panter <vadmium+py@gmail.com>
Tue, 24 Jan 2017 00:30:06 +0000 (00:30 +0000)
Doc/whatsnew/3.7.rst
Objects/clinic/unicodeobject.c.h
Objects/unicodeobject.c

index 5353a141cbcdddbc3b44629c05bb7158e5d1074a..129d4d45c57e2e3d3efcb6993b5c1855a2eee36a 100644 (file)
@@ -179,5 +179,5 @@ Changes in the Python API
 CPython bytecode changes
 ------------------------
 
-* Added two new opcodes: :opcode:`LOAD_METHOD`` and :opcode:`CALL_METHOD`.
+* Added two new opcodes: :opcode:`LOAD_METHOD` and :opcode:`CALL_METHOD`.
   (Contributed by Yury Selivanov and INADA Naoki in :issue:`26110`.)
index c4bf3a433cb583330674532b1d9be7371e12c957..509405e5271ca6e7256cbac77343c124280071d7 100644 (file)
@@ -406,7 +406,7 @@ PyDoc_STRVAR(unicode_join__doc__,
 "\n"
 "Concatenate any number of strings.\n"
 "\n"
-"The string whose method is called is inserted in between each given strings.\n"
+"The string whose method is called is inserted in between each given string.\n"
 "The result is returned as a new string.\n"
 "\n"
 "Example: \'.\'.join([\'ab\', \'pq\', \'rs\']) -> \'ab.pq.rs\'");
@@ -962,4 +962,4 @@ unicode_sizeof(PyObject *self, PyObject *Py_UNUSED(ignored))
 {
     return unicode_sizeof_impl(self);
 }
-/*[clinic end generated code: output=3d73f3dfd6ec7d83 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=88b06f61edd282f9 input=a9049054013a1b77]*/
index 0b79c5bd1a5a449ee50c925c33f722ba63f32243..d3516fa45f9156d2e4105739c7c7bf04dd288ff7 100644 (file)
@@ -12201,7 +12201,7 @@ str.join as unicode_join
 
 Concatenate any number of strings.
 
-The string whose method is called is inserted in between each given strings.
+The string whose method is called is inserted in between each given string.
 The result is returned as a new string.
 
 Example: '.'.join(['ab', 'pq', 'rs']) -> 'ab.pq.rs'
@@ -12209,7 +12209,7 @@ Example: '.'.join(['ab', 'pq', 'rs']) -> 'ab.pq.rs'
 
 static PyObject *
 unicode_join(PyObject *self, PyObject *iterable)
-/*[clinic end generated code: output=6857e7cecfe7bf98 input=d8311e5ccbafbeb6]*/
+/*[clinic end generated code: output=6857e7cecfe7bf98 input=2f70422bfb8fa189]*/
 {
     return PyUnicode_Join(self, iterable);
 }