summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-01-11 12:12:20 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-01-11 12:12:20 (GMT)
commit8762595ef3fd807a67be4a97e0e5815d2abb0521 (patch)
treea068b7f0aef09d53a78809b27890b5cbc4260b88
parent69c753d9a6d423f586a18bbf0c8820b7bbe27f1a (diff)
parent5e12bb728fd82476c38d824f53834438f7358089 (diff)
downloadcpython-8762595ef3fd807a67be4a97e0e5815d2abb0521.zip
cpython-8762595ef3fd807a67be4a97e0e5815d2abb0521.tar.gz
cpython-8762595ef3fd807a67be4a97e0e5815d2abb0521.tar.bz2
Merge patchcheck changes with 3.2
-rwxr-xr-xTools/scripts/patchcheck.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/scripts/patchcheck.py b/Tools/scripts/patchcheck.py
index 503c67a..7b8857e 100755
--- a/Tools/scripts/patchcheck.py
+++ b/Tools/scripts/patchcheck.py
@@ -173,8 +173,9 @@ def main():
# Test suite run and passed.
if python_files or c_files:
+ end = " and check for refleaks?" if c_files else "?"
print()
- print("Did you run the test suite?")
+ print("Did you run the test suite" + end)
if __name__ == '__main__':