From 949771871ff4e3393a6189f99f52fd10139f5f55 Mon Sep 17 00:00:00 2001 From: Iwithyou2025 Date: Fri, 6 Jun 2025 20:57:40 +0800 Subject: [PATCH] Remove outdated warning about faulthandler_timeout on Windows (#13492) --------- Co-authored-by: Bruno Oliveira (cherry picked from commit 216c7ec882b2aa30fb8a35e100c990c34fca12c1) --- changelog/13492.doc.rst | 1 + doc/en/how-to/failures.rst | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelog/13492.doc.rst diff --git a/changelog/13492.doc.rst b/changelog/13492.doc.rst new file mode 100644 index 00000000000..6e3f72a860e --- /dev/null +++ b/changelog/13492.doc.rst @@ -0,0 +1 @@ +Fixed outdated warning about ``faulthandler`` not working on Windows. diff --git a/doc/en/how-to/failures.rst b/doc/en/how-to/failures.rst index b3d0c155b48..0c45cd7b118 100644 --- a/doc/en/how-to/failures.rst +++ b/doc/en/how-to/failures.rst @@ -112,7 +112,7 @@ on the command-line. Also the :confval:`faulthandler_timeout=X` configuration option can be used to dump the traceback of all threads if a test takes longer than ``X`` -seconds to finish (not available on Windows). +seconds to finish. .. note::