summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorMiro HronĨok <miro@hroncok.cz>2024-08-05 23:10:40 (GMT)
committerGitHub <noreply@github.com>2024-08-05 23:10:40 (GMT)
commit44659d392751f0161a0f958fec39ad013da45427 (patch)
tree9c55ddf3665b638cb01e49351b34179155d507c6 /Misc/NEWS.d
parent5bd72912a1a85be96092de302608a4298741c6cd (diff)
downloadcpython-44659d392751f0161a0f958fec39ad013da45427.zip
cpython-44659d392751f0161a0f958fec39ad013da45427.tar.gz
cpython-44659d392751f0161a0f958fec39ad013da45427.tar.bz2
GH-118943: Handle races when moving jit_stencils.h (GH-120690)
Co-authored-by: Kirill Podoprigora <kirill.bast9@mail.ru>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Build/2024-06-18-15-28-25.gh-issue-118943.aie7nn.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2024-06-18-15-28-25.gh-issue-118943.aie7nn.rst b/Misc/NEWS.d/next/Build/2024-06-18-15-28-25.gh-issue-118943.aie7nn.rst
new file mode 100644
index 0000000..997c990
--- /dev/null
+++ b/Misc/NEWS.d/next/Build/2024-06-18-15-28-25.gh-issue-118943.aie7nn.rst
@@ -0,0 +1,3 @@
+Fix a possible race condition affecting parallel builds configured with
+``--enable-experimental-jit``, in which :exc:`FileNotFoundError` could be caused by
+another process already moving ``jit_stencils.h.new`` to ``jit_stencils.h``.