summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2015-01-05 07:19:40 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2015-01-05 07:19:40 (GMT)
commitd91082c777fb6494a41f85bcf56bbe4ae5ad9d37 (patch)
treeff2810ba125b8300acb9e01084633ddaa9257b93
parentb461000a3f8270f28384968d4122fbf102644d01 (diff)
downloadcpython-d91082c777fb6494a41f85bcf56bbe4ae5ad9d37.zip
cpython-d91082c777fb6494a41f85bcf56bbe4ae5ad9d37.tar.gz
cpython-d91082c777fb6494a41f85bcf56bbe4ae5ad9d37.tar.bz2
Issue #18644: Fix a ResourceWarning in formatter.test().
Patch by Vajrasky Kok.
-rw-r--r--Lib/formatter.py14
1 files changed, 9 insertions, 5 deletions
diff --git a/Lib/formatter.py b/Lib/formatter.py
index d8cca52..9338261 100644
--- a/Lib/formatter.py
+++ b/Lib/formatter.py
@@ -436,11 +436,15 @@ def test(file = None):
fp = open(sys.argv[1])
else:
fp = sys.stdin
- for line in fp:
- if line == '\n':
- f.end_paragraph(1)
- else:
- f.add_flowing_data(line)
+ try:
+ for line in fp:
+ if line == '\n':
+ f.end_paragraph(1)
+ else:
+ f.add_flowing_data(line)
+ finally:
+ if fp is not sys.stdin:
+ fp.close()
f.end_paragraph(0)