summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2003-03-09 05:33:33 (GMT)
committerRaymond Hettinger <python@rcn.com>2003-03-09 05:33:33 (GMT)
commit42182ebaf6387371c238d2a3484e7f1e085c9d1c (patch)
tree8f66f70db6a3ee587fe392a07898179863abe3cc /Misc
parente9e20a98381bd7689f6813ac66e3400e1069757e (diff)
downloadcpython-42182ebaf6387371c238d2a3484e7f1e085c9d1c.zip
cpython-42182ebaf6387371c238d2a3484e7f1e085c9d1c.tar.gz
cpython-42182ebaf6387371c238d2a3484e7f1e085c9d1c.tar.bz2
SF 698520: Iterator for urllib.URLOpener
Contributed by Brett Cannon.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index a83e282..ebccbec 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -46,6 +46,9 @@ Extension modules
Library
-------
+- The urllib module now offers support for the iterator protocol.
+ SF patch 698520 contributed by Brett Cannon.
+
- New module timeit provides a simple framework for timing the
execution speed of expressions and statements.