@@ -1937,8 +1937,8 @@ features:
1937
1937
must be a string specifying a file path. However, some functions now
1938
1938
alternatively accept an open file descriptor for their *path * argument.
1939
1939
The function will then operate on the file referred to by the descriptor.
1940
- ( For POSIX systems, Python will call the variant of the function prefixed
1941
- with ``f `` (e.g. call ``fchdir `` instead of ``chdir ``).)
1940
+ For POSIX systems, Python will call the variant of the function prefixed
1941
+ with ``f `` (e.g. call ``fchdir `` instead of ``chdir ``).
1942
1942
1943
1943
You can check whether or not *path * can be specified as a file descriptor
1944
1944
for a particular function on your platform using :data: `os.supports_fd `.
@@ -1953,7 +1953,7 @@ features:
1953
1953
* **paths relative to directory descriptors: ** If *dir_fd * is not ``None ``, it
1954
1954
should be a file descriptor referring to a directory, and the path to operate
1955
1955
on should be relative; path will then be relative to that directory. If the
1956
- path is absolute, *dir_fd * is ignored. ( For POSIX systems, Python will call
1956
+ path is absolute, *dir_fd * is ignored. For POSIX systems, Python will call
1957
1957
the variant of the function with an ``at `` suffix and possibly prefixed with
1958
1958
``f `` (e.g. call ``faccessat `` instead of ``access ``).
1959
1959
@@ -1966,8 +1966,8 @@ features:
1966
1966
* **not following symlinks: ** If *follow_symlinks * is
1967
1967
``False ``, and the last element of the path to operate on is a symbolic link,
1968
1968
the function will operate on the symbolic link itself rather than the file
1969
- pointed to by the link. ( For POSIX systems, Python will call the ``l... ``
1970
- variant of the function.)
1969
+ pointed to by the link. For POSIX systems, Python will call the ``l... ``
1970
+ variant of the function.
1971
1971
1972
1972
You can check whether or not *follow_symlinks * is supported for a particular
1973
1973
function on your platform using :data: `os.supports_follow_symlinks `.
0 commit comments