]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] gh-138993: Dedent `credits` text (GH-138994) (#140088)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 15 Oct 2025 11:05:47 +0000 (13:05 +0200)
committerGitHub <noreply@github.com>
Wed, 15 Oct 2025 11:05:47 +0000 (14:05 +0300)
Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Lib/site.py
Misc/NEWS.d/next/Library/2025-09-16-16-46-58.gh-issue-138993.-8s8_T.rst [new file with mode: 0644]

index f93271971594d8310377a0c92ad1c93ab24226f7..aeb7c6cfc71de99dd097c6c5c1e88b2db3d3c72e 100644 (file)
@@ -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.
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 (file)
index 0000000..1be588f
--- /dev/null
@@ -0,0 +1 @@
+Dedent :data:`credits` text.