From 9ff21bde1fc58fa3fdfb20e778387f92f5f77212 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych Date: Tue, 25 Nov 2025 19:54:31 +0000 Subject: [PATCH 1/2] Remove Misc/ACKS check from patchcheck.py and about doc --- Doc/about.rst | 5 +++-- Tools/patchcheck/patchcheck.py | 8 -------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/Doc/about.rst b/Doc/about.rst index 8f635d7f743a98..406ba0e5182eb3 100644 --- a/Doc/about.rst +++ b/Doc/about.rst @@ -32,8 +32,9 @@ Contributors to the Python documentation ---------------------------------------- Many people have contributed to the Python language, the Python standard -library, and the Python documentation. See :source:`Misc/ACKS` in the Python -source distribution for a partial list of contributors. +library, and the Python documentation. See the `CPython +GitHub repository `_ +for a partial list of contributors. It is only with the input and contributions of the Python community that Python has such wonderful documentation -- Thank You! diff --git a/Tools/patchcheck/patchcheck.py b/Tools/patchcheck/patchcheck.py index afd010a52544a3..1a5797f74223bd 100755 --- a/Tools/patchcheck/patchcheck.py +++ b/Tools/patchcheck/patchcheck.py @@ -176,12 +176,6 @@ def docs_modified(file_paths): return bool(file_paths) -@status("Misc/ACKS updated", modal=True) -def credit_given(file_paths): - """Check if Misc/ACKS has been changed.""" - return os.path.join('Misc', 'ACKS') in file_paths - - @status("Misc/NEWS.d updated with `blurb`", modal=True) def reported_news(file_paths): """Check if Misc/NEWS.d has been changed.""" @@ -215,8 +209,6 @@ def main(): misc_files = {p for p in file_paths if p.startswith('Misc')} # Docs updated. docs_modified(has_doc_files) - # Misc/ACKS changed. - credit_given(misc_files) # Misc/NEWS changed. reported_news(misc_files) # Regenerated configure, if necessary. From 41b091158447a516deb7548a4e58909b45d7aed0 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Tue, 25 Nov 2025 23:33:01 +0000 Subject: [PATCH 2/2] Update Doc/about.rst --- Doc/about.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/about.rst b/Doc/about.rst index 406ba0e5182eb3..5c1b497ca6bcea 100644 --- a/Doc/about.rst +++ b/Doc/about.rst @@ -33,7 +33,7 @@ Contributors to the Python documentation Many people have contributed to the Python language, the Python standard library, and the Python documentation. See the `CPython -GitHub repository `_ +GitHub repository `__ for a partial list of contributors. It is only with the input and contributions of the Python community