@@ -2017,8 +2017,8 @@ features:
2017
2017
must be a string specifying a file path. However, some functions now
2018
2018
alternatively accept an open file descriptor for their *path * argument.
2019
2019
The function will then operate on the file referred to by the descriptor.
2020
- ( For POSIX systems, Python will call the variant of the function prefixed
2021
- with ``f `` (e.g. call ``fchdir `` instead of ``chdir ``).)
2020
+ For POSIX systems, Python will call the variant of the function prefixed
2021
+ with ``f `` (e.g. call ``fchdir `` instead of ``chdir ``).
2022
2022
2023
2023
You can check whether or not *path * can be specified as a file descriptor
2024
2024
for a particular function on your platform using :data: `os.supports_fd `.
@@ -2033,7 +2033,7 @@ features:
2033
2033
* **paths relative to directory descriptors: ** If *dir_fd * is not ``None ``, it
2034
2034
should be a file descriptor referring to a directory, and the path to operate
2035
2035
on should be relative; path will then be relative to that directory. If the
2036
- path is absolute, *dir_fd * is ignored. ( For POSIX systems, Python will call
2036
+ path is absolute, *dir_fd * is ignored. For POSIX systems, Python will call
2037
2037
the variant of the function with an ``at `` suffix and possibly prefixed with
2038
2038
``f `` (e.g. call ``faccessat `` instead of ``access ``).
2039
2039
@@ -2046,8 +2046,8 @@ features:
2046
2046
* **not following symlinks: ** If *follow_symlinks * is
2047
2047
``False ``, and the last element of the path to operate on is a symbolic link,
2048
2048
the function will operate on the symbolic link itself rather than the file
2049
- pointed to by the link. ( For POSIX systems, Python will call the ``l... ``
2050
- variant of the function.)
2049
+ pointed to by the link. For POSIX systems, Python will call the ``l... ``
2050
+ variant of the function.
2051
2051
2052
2052
You can check whether or not *follow_symlinks * is supported for a particular
2053
2053
function on your platform using :data: `os.supports_follow_symlinks `.
0 commit comments