summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-01-11 12:07:47 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-01-11 12:07:47 (GMT)
commit9e9cb2810e08cd1362bf55bd91928d0d0e05cd08 (patch)
tree0b61161eeb90898392ffc00400316a90d7774813
parent4b263663fccdef51005a3daf1cbdac54d51829d5 (diff)
downloadcpython-9e9cb2810e08cd1362bf55bd91928d0d0e05cd08.zip
cpython-9e9cb2810e08cd1362bf55bd91928d0d0e05cd08.tar.gz
cpython-9e9cb2810e08cd1362bf55bd91928d0d0e05cd08.tar.bz2
Add a note about checking refleaks to patchcheck.
-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 438e44e..fe2e291 100755
--- a/Tools/scripts/patchcheck.py
+++ b/Tools/scripts/patchcheck.py
@@ -174,8 +174,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__':