summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-01-11 12:12:42 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-01-11 12:12:42 (GMT)
commite814501c215d4fa62c455a5573ed2b09356ad663 (patch)
treedfc10166b4510e49e605af97feeb9ea0431c4954 /Tools
parentf3ffb0197620e8c646884fd2b6f37543960875fc (diff)
parent8762595ef3fd807a67be4a97e0e5815d2abb0521 (diff)
downloadcpython-e814501c215d4fa62c455a5573ed2b09356ad663.zip
cpython-e814501c215d4fa62c455a5573ed2b09356ad663.tar.gz
cpython-e814501c215d4fa62c455a5573ed2b09356ad663.tar.bz2
Merge patchcheck changes with 3.3
Diffstat (limited to 'Tools')
-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__':