From 6ceca509d5c99e8cb305474f3c83ccd70ec5d244 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Tue, 16 Sep 2025 16:44:08 +0100 Subject: [PATCH 1/2] Commit --- Lib/site.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/site.py b/Lib/site.py index f93271971594d8..aeb7c6cfc71de9 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -449,9 +449,9 @@ def setcopyright(): """Set 'copyright' and 'credits' in builtins""" builtins.copyright = _sitebuiltins._Printer("copyright", sys.copyright) builtins.credits = _sitebuiltins._Printer("credits", """\ - Thanks to CWI, CNRI, BeOpen, Zope Corporation, the Python Software - Foundation, and a cast of thousands for supporting Python - development. See www.python.org for more information.""") +Thanks to CWI, CNRI, BeOpen, Zope Corporation, the Python Software +Foundation, and a cast of thousands for supporting Python +development. See www.python.org for more information.""") files, dirs = [], [] # Not all modules are required to have a __file__ attribute. See # PEP 420 for more details. From 84a7d94e824b76b29d3218cead407ed55a7e2b95 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Tue, 16 Sep 2025 16:47:07 +0100 Subject: [PATCH 2/2] Blurbed --- .../next/Library/2025-09-16-16-46-58.gh-issue-138993.-8s8_T.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Library/2025-09-16-16-46-58.gh-issue-138993.-8s8_T.rst diff --git a/Misc/NEWS.d/next/Library/2025-09-16-16-46-58.gh-issue-138993.-8s8_T.rst b/Misc/NEWS.d/next/Library/2025-09-16-16-46-58.gh-issue-138993.-8s8_T.rst new file mode 100644 index 00000000000000..1be588f2ba568c --- /dev/null +++ b/Misc/NEWS.d/next/Library/2025-09-16-16-46-58.gh-issue-138993.-8s8_T.rst @@ -0,0 +1 @@ +Dedent :data:`credits` text.