diff options
-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 57a6a848f5..384611c791 100644 --- a/Doc/library/pathlib.rst +++ b/Doc/library/pathlib.rst @@ -989,7 +989,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 |