Skip to content

Commit 33efd71

Browse files
Remove Misc/ACKS check from patchcheck, documentation (#141960)
Co-authored-by: Adam Turner <[email protected]>
1 parent 9f2a34a commit 33efd71

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

Doc/about.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,9 @@ Contributors to the Python documentation
3232
----------------------------------------
3333

3434
Many people have contributed to the Python language, the Python standard
35-
library, and the Python documentation. See :source:`Misc/ACKS` in the Python
36-
source distribution for a partial list of contributors.
35+
library, and the Python documentation. See the `CPython
36+
GitHub repository <https://github.com/python/cpython/graphs/contributors>`__
37+
for a partial list of contributors.
3738

3839
It is only with the input and contributions of the Python community
3940
that Python has such wonderful documentation -- Thank You!

Tools/patchcheck/patchcheck.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,6 @@ def docs_modified(file_paths):
176176
return bool(file_paths)
177177

178178

179-
@status("Misc/ACKS updated", modal=True)
180-
def credit_given(file_paths):
181-
"""Check if Misc/ACKS has been changed."""
182-
return os.path.join('Misc', 'ACKS') in file_paths
183-
184-
185179
@status("Misc/NEWS.d updated with `blurb`", modal=True)
186180
def reported_news(file_paths):
187181
"""Check if Misc/NEWS.d has been changed."""
@@ -215,8 +209,6 @@ def main():
215209
misc_files = {p for p in file_paths if p.startswith('Misc')}
216210
# Docs updated.
217211
docs_modified(has_doc_files)
218-
# Misc/ACKS changed.
219-
credit_given(misc_files)
220212
# Misc/NEWS changed.
221213
reported_news(misc_files)
222214
# Regenerated configure, if necessary.

0 commit comments

Comments
 (0)