summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-01-18 08:35:40 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-01-18 08:35:40 (GMT)
commit43beaebffb55e0b9250d996fd7a10f6e575f34e0 (patch)
tree473b5cf8560700acf12c95512a9c16ca0d757cdd /Lib
parent5e90cd9b32b1fdd1779d6cbd19530fffe26683ff (diff)
downloadcpython-43beaebffb55e0b9250d996fd7a10f6e575f34e0.zip
cpython-43beaebffb55e0b9250d996fd7a10f6e575f34e0.tar.gz
cpython-43beaebffb55e0b9250d996fd7a10f6e575f34e0.tar.bz2
Issue #6500: Fixed infinite recursion in urllib2.Request.__getattr__().
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_urllib2.py5
-rw-r--r--Lib/urllib2.py8
2 files changed, 8 insertions, 5 deletions
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py
index 32ffd0a..5a631b3 100644
--- a/Lib/test/test_urllib2.py
+++ b/Lib/test/test_urllib2.py
@@ -1350,6 +1350,11 @@ class RequestTests(unittest.TestCase):
req = Request(url)
self.assertEqual(req.get_full_url(), url)
+ def test_private_attributes(self):
+ self.assertFalse(hasattr(self.get, '_Request__r_xxx'))
+ # Issue #6500: infinite recursion
+ self.assertFalse(hasattr(self.get, '_Request__r_method'))
+
def test_HTTPError_interface(self):
"""
Issue 13211 reveals that HTTPError didn't implement the URLError
diff --git a/Lib/urllib2.py b/Lib/urllib2.py
index 9277b1d..8ec5e2a 100644
--- a/Lib/urllib2.py
+++ b/Lib/urllib2.py
@@ -248,11 +248,9 @@ class Request:
# methods getting called in a non-standard order. this may be
# too complicated and/or unnecessary.
# XXX should the __r_XXX attributes be public?
- if attr[:12] == '_Request__r_':
- name = attr[12:]
- if hasattr(Request, 'get_' + name):
- getattr(self, 'get_' + name)()
- return getattr(self, attr)
+ if attr in ('_Request__r_type', '_Request__r_host'):
+ getattr(self, 'get_' + attr[12:])()
+ return self.__dict__[attr]
raise AttributeError, attr
def get_method(self):