]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.7] Remove stray quote in os.replace docstring. (GH-11835)
authorBenjamin Peterson <benjamin@python.org>
Wed, 13 Feb 2019 04:36:09 +0000 (20:36 -0800)
committerGitHub <noreply@github.com>
Wed, 13 Feb 2019 04:36:09 +0000 (20:36 -0800)
(cherry picked from commit 73d600239b0aa34198bce2b7982e4ff14c92f119)

Co-authored-by: Anthony Sottile <asottile@umich.edu>
Modules/clinic/posixmodule.c.h
Modules/posixmodule.c

index a722e93be275b5a837cc7a301975f34e18f7d0a4..caa1cacd3f0a9ee8f6b27fcae9d70a1e8b019f04 100644 (file)
@@ -1264,7 +1264,7 @@ PyDoc_STRVAR(os_replace__doc__,
 "  descriptor open to a directory, and the respective path string (src or dst)\n"
 "  should be relative; the path will then be relative to that directory.\n"
 "src_dir_fd and dst_dir_fd, may not be implemented on your platform.\n"
-"  If they are unavailable, using them will raise a NotImplementedError.\"");
+"  If they are unavailable, using them will raise a NotImplementedError.");
 
 #define OS_REPLACE_METHODDEF    \
     {"replace", (PyCFunction)os_replace, METH_FASTCALL|METH_KEYWORDS, os_replace__doc__},
@@ -6538,4 +6538,4 @@ exit:
 #ifndef OS_GETRANDOM_METHODDEF
     #define OS_GETRANDOM_METHODDEF
 #endif /* !defined(OS_GETRANDOM_METHODDEF) */
-/*[clinic end generated code: output=df73bd7805978a25 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=32c935671ee020d5 input=a9049054013a1b77]*/
index f76bd57fe41beeb7d1362bbe0a9de00fc8801891..e587ed23c29f0e4fbe469fb22d0951efbd057433 100644 (file)
@@ -4122,13 +4122,13 @@ If either src_dir_fd or dst_dir_fd is not None, it should be a file
   descriptor open to a directory, and the respective path string (src or dst)
   should be relative; the path will then be relative to that directory.
 src_dir_fd and dst_dir_fd, may not be implemented on your platform.
-  If they are unavailable, using them will raise a NotImplementedError."
+  If they are unavailable, using them will raise a NotImplementedError.
 [clinic start generated code]*/
 
 static PyObject *
 os_replace_impl(PyObject *module, path_t *src, path_t *dst, int src_dir_fd,
                 int dst_dir_fd)
-/*[clinic end generated code: output=1968c02e7857422b input=25515dfb107c8421]*/
+/*[clinic end generated code: output=1968c02e7857422b input=c003f0def43378ef]*/
 {
     return internal_rename(src, dst, src_dir_fd, dst_dir_fd, 1);
 }