diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-01-11 12:12:20 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-01-11 12:12:20 (GMT) |
commit | 8762595ef3fd807a67be4a97e0e5815d2abb0521 (patch) | |
tree | a068b7f0aef09d53a78809b27890b5cbc4260b88 /Tools | |
parent | 69c753d9a6d423f586a18bbf0c8820b7bbe27f1a (diff) | |
parent | 5e12bb728fd82476c38d824f53834438f7358089 (diff) | |
download | cpython-8762595ef3fd807a67be4a97e0e5815d2abb0521.zip cpython-8762595ef3fd807a67be4a97e0e5815d2abb0521.tar.gz cpython-8762595ef3fd807a67be4a97e0e5815d2abb0521.tar.bz2 |
Merge patchcheck changes with 3.2
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__': |