summaryrefslogtreecommitdiffstats
path: root/Tools
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)
commit5e12bb728fd82476c38d824f53834438f7358089 (patch)
tree583ff00c1f0924c7e3d88ffa6059efeb8ab9e1d7 /Tools
parentfd25ffa012eb3da336e87e88cb23d71ef6a604e7 (diff)
downloadcpython-5e12bb728fd82476c38d824f53834438f7358089.zip
cpython-5e12bb728fd82476c38d824f53834438f7358089.tar.gz
cpython-5e12bb728fd82476c38d824f53834438f7358089.tar.bz2
Add a note about checking refleaks to patchcheck.
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 0e18dd9..6a39145 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__':