File tree Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Expand file tree Collapse file tree 2 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,9 @@ Contributors to the Python documentation
3232----------------------------------------
3333
3434Many 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
3839It is only with the input and contributions of the Python community
3940that Python has such wonderful documentation -- Thank You!
Original file line number Diff line number Diff 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 )
186180def 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.
You can’t perform that action at this time.
0 commit comments