diff options
author | Éric Araujo <merwok@netwok.org> | 2011-03-11 16:42:48 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-03-11 16:42:48 (GMT) |
commit | a3dd56b6cffaeee21fec6529b212fd4fa98c1ea8 (patch) | |
tree | 6b9fe78b2e36d78d159216950039a033ba9311a8 /Doc/tutorial | |
parent | 17b880a5d6b64f1e7d26ec8229e8b41cdf740690 (diff) | |
download | cpython-a3dd56b6cffaeee21fec6529b212fd4fa98c1ea8.zip cpython-a3dd56b6cffaeee21fec6529b212fd4fa98c1ea8.tar.gz cpython-a3dd56b6cffaeee21fec6529b212fd4fa98c1ea8.tar.bz2 |
Use with statement where it improves the documentation (closes #10461)
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/stdlib2.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst index 603f143..85c88dc 100644 --- a/Doc/tutorial/stdlib2.rst +++ b/Doc/tutorial/stdlib2.rst @@ -141,7 +141,9 @@ standard size and in little-endian byte order:: import struct - data = open('myfile.zip', 'rb').read() + with open('myfile.zip', 'rb') as f: + data = f.read() + start = 0 for i in range(3): # show the first 3 file headers start += 14 |