summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-04-22 21:14:41 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-04-22 21:14:41 (GMT)
commit9686585a82defca236da0e29f44137c491d9e980 (patch)
treed7ea91d89c5b0a4269a287aed06b30c9a712fa77 /Misc
parentd59fefb23adc75fbdec618e24e93848ae406e3d8 (diff)
downloadcpython-9686585a82defca236da0e29f44137c491d9e980.zip
cpython-9686585a82defca236da0e29f44137c491d9e980.tar.gz
cpython-9686585a82defca236da0e29f44137c491d9e980.tar.bz2
Issue #2670: urllib2.build_opener() failed when two handlers
derive the same default base class. Will backport.
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 6a0e924..3930929 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Core and builtins
Extensions Modules
------------------
+- Issue #2670: Fix a failure in urllib2.build_opener(), when passed two
+ handlers that derive the same default base class.
+
- Added kill, terminate and send_signal(sig) to subprocess.Popen.
- Added phase(z) -> phi, polar(z) -> r, phi and rect(r, phi) -> z to the cmath