diff options
author | W. Trevor King <wking@tremily.us> | 2014-04-05 10:31:06 -0700 |
---|---|---|
committer | David Bremner <david@tethera.net> | 2014-04-21 21:31:45 +0900 |
commit | 427b3db243626916d739e2709c5a91212afb5084 (patch) | |
tree | 288fa5afd631d10830dc1fc9b4f19ce27a3d1607 /doc | |
parent | b10b12da890d31819e411aec5158dca99359e830 (diff) |
doc/mkdocdeps.py: Use "with" statement for the output file
Before this patch, the open was unnecessarily early and relied on the
process cleanup to close. Neither one of these was a real problem,
but PEP 343's context managers (which landed in Python 2.5) make
proper cleanup very easy.
[1]: http://legacy.python.org/dev/peps/pep-0343/
Diffstat (limited to 'doc')
-rw-r--r-- | doc/mkdocdeps.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/mkdocdeps.py b/doc/mkdocdeps.py index de1cbb8f..b87fe3e8 100644 --- a/doc/mkdocdeps.py +++ b/doc/mkdocdeps.py @@ -9,10 +9,10 @@ import conf roff_files = [] rst_files = [] -out=open(outfile,'w') for page in conf.man_pages: rst_files = rst_files + ["{0:s}/{1:s}.rst".format(srcdir,page[0])] roff_files = roff_files + ["{0:s}/man/{1:s}.{2:d}".format(builddir,page[0],page[4])] -out.write ('MAN_ROFF_FILES := ' + ' \\\n\t'.join(roff_files)+'\n') -out.write ('MAN_RST_FILES := ' + ' \\\n\t'.join(rst_files)+'\n') +with open(outfile, 'w') as out: + out.write('MAN_ROFF_FILES := ' + ' \\\n\t'.join(roff_files) + '\n') + out.write('MAN_RST_FILES := ' + ' \\\n\t'.join(rst_files) + '\n') |