commit | 0b093e068e47f26e81674a6cf124a32377317cd7 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Apr 25 10:17:27 2010 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Apr 25 10:17:27 2010 +0000 |
tree | 57dd49557c41dc40f24c145cc8dc90f4d59525ec | |
parent | 404bd7f473314bcef9d92f1c695d0275f9d5d397 [diff] [blame] |
#8522: use with statement instead of try-finally for file handling.
diff --git a/Doc/howto/doanddont.rst b/Doc/howto/doanddont.rst index f0c688b..05d8df9 100644 --- a/Doc/howto/doanddont.rst +++ b/Doc/howto/doanddont.rst
@@ -232,11 +232,8 @@ and perhaps not at all in non-C implementations (e.g., Jython). :: def get_status(file): - fp = open(file) - try: + with open(file) as fp: return fp.readline() - finally: - fp.close() Using the Batteries