summaryrefslogtreecommitdiffstats
path: root/Lib/urllib
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-03-15 20:26:12 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-03-15 20:26:12 (GMT)
commit73277fe0ebd07b470e43804c24282a4947a63341 (patch)
tree23510ccea0e27b5615f59ffbebaaef34e54fa4d5 /Lib/urllib
parent38c27546520fea63bc7efb031f2a6255506d2c5c (diff)
downloadcpython-73277fe0ebd07b470e43804c24282a4947a63341.zip
cpython-73277fe0ebd07b470e43804c24282a4947a63341.tar.gz
cpython-73277fe0ebd07b470e43804c24282a4947a63341.tar.bz2
closes Issue #11199: Fix the with urllib which hangs on particular ftp urls.
Diffstat (limited to 'Lib/urllib')
-rw-r--r--Lib/urllib/response.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib/response.py b/Lib/urllib/response.py
index 8c6dcca..ffaa5fa 100644
--- a/Lib/urllib/response.py
+++ b/Lib/urllib/response.py
@@ -61,11 +61,11 @@ class addclosehook(addbase):
self.hookargs = hookargs
def close(self):
- addbase.close(self)
if self.closehook:
self.closehook(*self.hookargs)
self.closehook = None
self.hookargs = None
+ addbase.close(self)
class addinfo(addbase):
"""class to add an info() method to an open file."""