From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 15 Oct 2025 11:05:53 +0000 (+0200) Subject: [3.13] gh-138993: Dedent `credits` text (GH-138994) (#140087) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=77976761ba31f36061f299b08592c1480dc3e104;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-138993: Dedent `credits` text (GH-138994) (#140087) Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> --- diff --git a/Lib/site.py b/Lib/site.py index aedf36399c37..041dca113a57 100644 --- a/Lib/site.py +++ b/Lib/site.py @@ -443,9 +443,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. 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 000000000000..1be588f2ba56 --- /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.