projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c689d96
)
Merged revisions 80461 via svnmerge from
author
Georg Brandl
<georg@python.org>
Sun, 25 Apr 2010 10:18:59 +0000
(10:18 +0000)
committer
Georg Brandl
<georg@python.org>
Sun, 25 Apr 2010 10:18:59 +0000
(10:18 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk
........
r80461 | georg.brandl | 2010-04-25 12:17:27 +0200 (So, 25 Apr 2010) | 1 line
#8522: use with statement instead of try-finally for file handling.
........
Doc/howto/doanddont.rst
patch
|
blob
|
history
diff --git
a/Doc/howto/doanddont.rst
b/Doc/howto/doanddont.rst
index f0c688bf2d169da3d7c740a7cf5278a8667ced4e..05d8df9db93b684ce4c665983a69aece1e4b1141 100644
(file)
--- a/
Doc/howto/doanddont.rst
+++ b/
Doc/howto/doanddont.rst
@@
-232,11
+232,8
@@
file would not be closed when an exception is raised until the handler finishes,
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