From: Ezio Melotti Date: Fri, 11 Jan 2013 12:07:47 +0000 (+0200) Subject: Add a note about checking refleaks to patchcheck. X-Git-Tag: v3.2.4rc1~231 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5e12bb728fd82476c38d824f53834438f7358089;p=thirdparty%2FPython%2Fcpython.git Add a note about checking refleaks to patchcheck. --- diff --git a/Tools/scripts/patchcheck.py b/Tools/scripts/patchcheck.py index 0e18dd9356d4..6a391458909e 100755 --- a/Tools/scripts/patchcheck.py +++ b/Tools/scripts/patchcheck.py @@ -170,8 +170,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__':