diff options
author | Mariatta <Mariatta@users.noreply.github.com> | 2019-07-11 17:31:19 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-07-11 17:31:19 (GMT) |
commit | 7cbef72902f32866a416ca6c4e732af4541951b8 (patch) | |
tree | 7ca5ff1f7ed47bce67ae2836ac28f954bc41f589 | |
parent | 1dbd084f1f68d7293718b663df675cfbd0c65712 (diff) | |
download | cpython-7cbef72902f32866a416ca6c4e732af4541951b8.zip cpython-7cbef72902f32866a416ca6c4e732af4541951b8.tar.gz cpython-7cbef72902f32866a416ca6c4e732af4541951b8.tar.bz2 |
closes bpo-37554: Remove `q:q` in os.rst documentation (GH-14692)
https://bugs.python.org/issue37554
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 519d558..c74d687 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -2098,7 +2098,7 @@ features: On Windows, if *dst* exists a :exc:`FileExistsError` is always raised. - On Unix, if *src* is a file and *dst* is a directory or vice-versa, anq:q + On Unix, if *src* is a file and *dst* is a directory or vice-versa, an :exc:`IsADirectoryError` or a :exc:`NotADirectoryError` will be raised respectively. If both are directories and *dst* is empty, *dst* will be silently replaced. If *dst* is a non-empty directory, an :exc:`OSError` |