diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2016-08-09 22:10:53 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2016-08-09 22:10:53 (GMT) |
commit | 8ec8749a38a91dc4cbffea1e48775ff8f95ca65b (patch) | |
tree | 862d4dcc374821bfc9099b9d9d18cc388daf8eef | |
parent | f03f7c75d8257228a6c15d96600a6a223ee6cb43 (diff) | |
parent | 7a26da5845bd38474051ca1550d13a6e9fbb8550 (diff) | |
download | cpython-8ec8749a38a91dc4cbffea1e48775ff8f95ca65b.zip cpython-8ec8749a38a91dc4cbffea1e48775ff8f95ca65b.tar.gz cpython-8ec8749a38a91dc4cbffea1e48775ff8f95ca65b.tar.bz2 |
Closes #27722: Merge with 3.5
-rw-r--r-- | Doc/library/pathlib.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pathlib.rst b/Doc/library/pathlib.rst index 737bc85..9257d2d 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -998,7 +998,7 @@ call fails (for example because the path doesn't exist): of :func:`os.symlink`'s. -.. method:: Path.touch(mode=0o777, exist_ok=True) +.. method:: Path.touch(mode=0o666, exist_ok=True) Create a file at this given path. If *mode* is given, it is combined with the process' ``umask`` value to determine the file mode and access |