@@ -2009,8 +2009,8 @@ features:
2009
2009
must be a string specifying a file path. However, some functions now
2010
2010
alternatively accept an open file descriptor for their *path * argument.
2011
2011
The function will then operate on the file referred to by the descriptor.
2012
- ( For POSIX systems, Python will call the variant of the function prefixed
2013
- with ``f `` (e.g. call ``fchdir `` instead of ``chdir ``).)
2012
+ For POSIX systems, Python will call the variant of the function prefixed
2013
+ with ``f `` (e.g. call ``fchdir `` instead of ``chdir ``).
2014
2014
2015
2015
You can check whether or not *path * can be specified as a file descriptor
2016
2016
for a particular function on your platform using :data: `os.supports_fd `.
@@ -2025,7 +2025,7 @@ features:
2025
2025
* **paths relative to directory descriptors: ** If *dir_fd * is not ``None ``, it
2026
2026
should be a file descriptor referring to a directory, and the path to operate
2027
2027
on should be relative; path will then be relative to that directory. If the
2028
- path is absolute, *dir_fd * is ignored. ( For POSIX systems, Python will call
2028
+ path is absolute, *dir_fd * is ignored. For POSIX systems, Python will call
2029
2029
the variant of the function with an ``at `` suffix and possibly prefixed with
2030
2030
``f `` (e.g. call ``faccessat `` instead of ``access ``).
2031
2031
@@ -2038,8 +2038,8 @@ features:
2038
2038
* **not following symlinks: ** If *follow_symlinks * is
2039
2039
``False ``, and the last element of the path to operate on is a symbolic link,
2040
2040
the function will operate on the symbolic link itself rather than the file
2041
- pointed to by the link. ( For POSIX systems, Python will call the ``l... ``
2042
- variant of the function.)
2041
+ pointed to by the link. For POSIX systems, Python will call the ``l... ``
2042
+ variant of the function.
2043
2043
2044
2044
You can check whether or not *follow_symlinks * is supported for a particular
2045
2045
function on your platform using :data: `os.supports_follow_symlinks `.
0 commit comments