diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-01-11 12:12:42 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-01-11 12:12:42 (GMT) |
commit | e814501c215d4fa62c455a5573ed2b09356ad663 (patch) | |
tree | dfc10166b4510e49e605af97feeb9ea0431c4954 /Tools | |
parent | f3ffb0197620e8c646884fd2b6f37543960875fc (diff) | |
parent | 8762595ef3fd807a67be4a97e0e5815d2abb0521 (diff) | |
download | cpython-e814501c215d4fa62c455a5573ed2b09356ad663.zip cpython-e814501c215d4fa62c455a5573ed2b09356ad663.tar.gz cpython-e814501c215d4fa62c455a5573ed2b09356ad663.tar.bz2 |
Merge patchcheck changes with 3.3
Diffstat (limited to 'Tools')
-rwxr-xr-x | Tools/scripts/patchcheck.py | 3 |
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__': |