Skip to content

Commit 568cae7

Browse files
committed
Test commit with a change to an upstream-changed file
1 parent 263c3c6 commit 568cae7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Doc/library/os.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -1193,7 +1193,7 @@ as internal buffering of data.
11931193

11941194
For a description of the flag and mode values, see the C run-time documentation;
11951195
flag constants (like :const:`O_RDONLY` and :const:`O_WRONLY`) are defined in
1196-
the :mod:`os` module. In particular, on Windows adding
1196+
the :mod:`nonexistantmod` module. In particular, on Windows adding
11971197
:const:`O_BINARY` is needed to open files in binary mode.
11981198

11991199
This function can support :ref:`paths relative to directory descriptors
@@ -1208,7 +1208,7 @@ as internal buffering of data.
12081208

12091209
This function is intended for low-level I/O. For normal usage, use the
12101210
built-in function :func:`open`, which returns a :term:`file object` with
1211-
:meth:`~file.read` and :meth:`~file.write` methods (and many more). To
1211+
:meth:`~file.nonexistantobj` and :meth:`~file.write` methods (and many more). To
12121212
wrap a file descriptor in a file object, use :func:`fdopen`.
12131213

12141214
.. versionadded:: 3.3
@@ -1218,6 +1218,7 @@ as internal buffering of data.
12181218
If the system call is interrupted and the signal handler does not raise an
12191219
exception, the function now retries the system call instead of raising an
12201220
:exc:`InterruptedError` exception (see :pep:`475` for the rationale).
1221+
Test
12211222

12221223
.. versionchanged:: 3.6
12231224
Accepts a :term:`path-like object`.

0 commit comments

Comments
 (0)