summaryrefslogtreecommitdiffstats
path: root/Tools/scripts
diff options
context:
space:
mode:
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)
commitf04488e2baea6bd539e90765eee98a0151e90574 (patch)
treedac33096a5df1503f43c9975109e0dcd78b328ee /Tools/scripts
parent14eba5fa41d193ea951346fcfc302c7f14cbe758 (diff)
parentfbc5ff6235e5fb53900d17f2bb69caec03240ba4 (diff)
downloadcpython-f04488e2baea6bd539e90765eee98a0151e90574.zip
cpython-f04488e2baea6bd539e90765eee98a0151e90574.tar.gz
cpython-f04488e2baea6bd539e90765eee98a0151e90574.tar.bz2
Merge 3.2
Diffstat (limited to 'Tools/scripts')
-rwxr-xr-xTools/scripts/patchcheck.py5
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__':