Skip to content

Commit b448cc3

Browse files
generatedunixname1734921407115435facebook-github-bot
authored andcommitted
Import upstream CPython branch '3.14'
Summary: Python `3.14.0rc3+` (`3.14`) was **published** on 2025-09-22 06:13:05+00:00. # Commit Info Base: (`3.14.0rc3+`) - `665a3495bfe4fae851a9b0f234dae4cc39b0829c` (commit date: 2025-09-18 17:54:43+00:00) Imported: (`3.14.0rc3+`) - `3.14` (commit date: 2025-09-22 06:13:05+00:00) Reviewed By: itamaro Differential Revision: D82955285 fbshipit-source-id: 63315befc3590467d478d667732b07cd74654442
1 parent 1cf88a6 commit b448cc3

3 files changed

Lines changed: 8 additions & 6 deletions

File tree

Doc/library/mmap.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,8 @@ To map anonymous memory, -1 should be passed as the fileno along with the length
200200
Writable :term:`bytes-like object` is now accepted.
201201

202202

203-
.. method:: flush([offset[, size]])
203+
.. method:: flush()
204+
flush(offset, size, /)
204205

205206
Flushes changes made to the in-memory copy of a file back to disk. Without
206207
use of this call there is no guarantee that changes are written back before

Doc/library/os.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2009,8 +2009,8 @@ features:
20092009
must be a string specifying a file path. However, some functions now
20102010
alternatively accept an open file descriptor for their *path* argument.
20112011
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``).
20142014

20152015
You can check whether or not *path* can be specified as a file descriptor
20162016
for a particular function on your platform using :data:`os.supports_fd`.
@@ -2025,7 +2025,7 @@ features:
20252025
* **paths relative to directory descriptors:** If *dir_fd* is not ``None``, it
20262026
should be a file descriptor referring to a directory, and the path to operate
20272027
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
20292029
the variant of the function with an ``at`` suffix and possibly prefixed with
20302030
``f`` (e.g. call ``faccessat`` instead of ``access``).
20312031

@@ -2038,8 +2038,8 @@ features:
20382038
* **not following symlinks:** If *follow_symlinks* is
20392039
``False``, and the last element of the path to operate on is a symbolic link,
20402040
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.
20432043

20442044
You can check whether or not *follow_symlinks* is supported for a particular
20452045
function on your platform using :data:`os.supports_follow_symlinks`.

Doc/reference/compound_stmts.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,7 @@ the items are surrounded by parentheses. For example::
590590
statement.
591591

592592
.. _match:
593+
.. _case:
593594

594595
The :keyword:`!match` statement
595596
===============================

0 commit comments

Comments
 (0)