[Python-checkins] Remove stray quote in os.replace docstring. (GH-11556)

Benjamin Peterson webhook-mailer at python.org
Tue Feb 12 23:15:59 EST 2019


https://github.com/python/cpython/commit/73d600239b0aa34198bce2b7982e4ff14c92f119
commit: 73d600239b0aa34198bce2b7982e4ff14c92f119
branch: master
author: Anthony Sottile <asottile at umich.edu>
committer: Benjamin Peterson <benjamin at python.org>
date: 2019-02-12T20:15:54-08:00
summary:

Remove stray quote in os.replace docstring. (GH-11556)

files:
M Modules/clinic/posixmodule.c.h
M Modules/posixmodule.c

diff --git a/Modules/clinic/posixmodule.c.h b/Modules/clinic/posixmodule.c.h
index d47618ce25c0..dc5f3b14abb9 100644
--- a/Modules/clinic/posixmodule.c.h
+++ b/Modules/clinic/posixmodule.c.h
@@ -1250,7 +1250,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)(void(*)(void))os_replace, METH_FASTCALL|METH_KEYWORDS, os_replace__doc__},
@@ -7339,4 +7339,4 @@ os_getrandom(PyObject *module, PyObject *const *args, Py_ssize_t nargs, PyObject
 #ifndef OS_GETRANDOM_METHODDEF
     #define OS_GETRANDOM_METHODDEF
 #endif /* !defined(OS_GETRANDOM_METHODDEF) */
-/*[clinic end generated code: output=d50ff73e5b5198b9 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=bb677205c036deca input=a9049054013a1b77]*/
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index 80add7da5fca..5995958fccd3 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -4157,13 +4157,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);
 }



More information about the Python-checkins mailing list