]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove ``Misc/ACKS`` check from patchcheck, documentation (#141960)
authorStan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Wed, 26 Nov 2025 00:00:00 +0000 (00:00 +0000)
committerGitHub <noreply@github.com>
Wed, 26 Nov 2025 00:00:00 +0000 (00:00 +0000)
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
Doc/about.rst
Tools/patchcheck/patchcheck.py

index 8f635d7f743a982b44936cad07ec2868302d641c..5c1b497ca6bcea8b86d0633d7c881da7812cf573 100644 (file)
@@ -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 <https://github.com/python/cpython/graphs/contributors>`__
+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!
index afd010a52544a3d8f3a3c83f77b7410c52dd9a91..1a5797f74223bda43e285d9e8a82f0e0fded155d 100755 (executable)
@@ -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.