diff options
author | Éric Araujo <merwok@netwok.org> | 2011-08-12 16:03:30 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-08-12 16:03:30 (GMT) |
commit | f04488e2baea6bd539e90765eee98a0151e90574 (patch) | |
tree | dac33096a5df1503f43c9975109e0dcd78b328ee /Tools/scripts | |
parent | 14eba5fa41d193ea951346fcfc302c7f14cbe758 (diff) | |
parent | fbc5ff6235e5fb53900d17f2bb69caec03240ba4 (diff) | |
download | cpython-f04488e2baea6bd539e90765eee98a0151e90574.zip cpython-f04488e2baea6bd539e90765eee98a0151e90574.tar.gz cpython-f04488e2baea6bd539e90765eee98a0151e90574.tar.bz2 |
Merge 3.2
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-x | Tools/scripts/patchcheck.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Tools/scripts/patchcheck.py b/Tools/scripts/patchcheck.py index 204407e..3e0155f 100755 --- a/Tools/scripts/patchcheck.py +++ b/Tools/scripts/patchcheck.py @@ -141,8 +141,9 @@ def main(): reported_news(special_files) # Test suite run and passed. - print() - print("Did you run the test suite?") + if python_files or c_files: + print() + print("Did you run the test suite?") if __name__ == '__main__': |