diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2007-05-20 11:12:49 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2007-05-20 11:12:49 (GMT) |
commit | c568cc162acd86c6b65c89246788d9de0b3e3fbc (patch) | |
tree | 3b0e4253eb7c4689f1adb91807fa3492db3e09ca /Doc/lib | |
parent | dc48b74497b67a449dd622fdaa7d69e7bff65a5e (diff) | |
download | cpython-c568cc162acd86c6b65c89246788d9de0b3e3fbc.zip cpython-c568cc162acd86c6b65c89246788d9de0b3e3fbc.tar.gz cpython-c568cc162acd86c6b65c89246788d9de0b3e3fbc.tar.bz2 |
Fix typo in example (should be backported, but my maintenance branch is woefully out of date)
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libcontextlib.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libcontextlib.tex b/Doc/lib/libcontextlib.tex index 72bf537..0ac5442 100644 --- a/Doc/lib/libcontextlib.tex +++ b/Doc/lib/libcontextlib.tex @@ -111,7 +111,7 @@ And lets you write code like this: \begin{verbatim} from __future__ import with_statement from contextlib import closing -import codecs +import urllib with closing(urllib.urlopen('http://www.python.org')) as page: for line in page: |