From 1925d53769efc945e817b273ad1d8825275bcd59 Mon Sep 17 00:00:00 2001 From: "Gregory P. Smith [Google LLC]" Date: Sat, 13 Apr 2024 01:38:09 +0000 Subject: [PATCH] gh-113308: Restore `uuid._load_system_functions` for 3.13 The do nothing private ``uuid._load_system_functions()`` function has been restored to appease a PyPI library that calls it to unblock 3.13 testing by others. It now triggers a :exc:`DeprecationWarning` instead. --- .../Library/2024-04-13-01-37-37.gh-issue-113308.6S_qUi.rst | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Misc/NEWS.d/next/Library/2024-04-13-01-37-37.gh-issue-113308.6S_qUi.rst diff --git a/Misc/NEWS.d/next/Library/2024-04-13-01-37-37.gh-issue-113308.6S_qUi.rst b/Misc/NEWS.d/next/Library/2024-04-13-01-37-37.gh-issue-113308.6S_qUi.rst new file mode 100644 index 00000000000000..f514ca5ee29fbe --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-04-13-01-37-37.gh-issue-113308.6S_qUi.rst @@ -0,0 +1,3 @@ +The do nothing private ``uuid._load_system_functions()`` function has been +restored to appease a PyPI library that calls it to unblock 3.13 testing by +others. It now triggers a :exc:`DeprecationWarning` instead.