summaryrefslogtreecommitdiff
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2019-02-12 20:36:09 -0800
committerGitHub <noreply@github.com>2019-02-12 20:36:09 -0800
commit00cc0fe177506c908c34c92d6defaba50e2213f4 (patch)
tree8c2d997da527315816888800a37e7b30b7430a83 /Modules/posixmodule.c
parent009220eae2e6b456707c1c89ef3f344b682e89d5 (diff)
downloadcpython-git-00cc0fe177506c908c34c92d6defaba50e2213f4.tar.gz
[3.7] Remove stray quote in os.replace docstring. (GH-11835)
(cherry picked from commit 73d600239b0aa34198bce2b7982e4ff14c92f119) Co-authored-by: Anthony Sottile <asottile@umich.edu>
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index f76bd57fe4..e587ed23c2 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -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);
}