diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-03-07 04:13:48 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-03-07 04:13:48 (GMT) |
commit | 056c060589a2c90eea2555495b83ba04de850d28 (patch) | |
tree | fa2ac6df3ce7aea65f0a348100e2097c9d0805c1 /Lib | |
parent | 83b32fddd6f3f5965558dd20df6764de46aefd9f (diff) | |
download | cpython-056c060589a2c90eea2555495b83ba04de850d28.zip cpython-056c060589a2c90eea2555495b83ba04de850d28.tar.gz cpython-056c060589a2c90eea2555495b83ba04de850d28.tar.bz2 |
Reverting the change made in r78434
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_urllib2.py | 1 | ||||
-rw-r--r-- | Lib/urllib/request.py | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py index 3e0a107..f0297a5 100644 --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -1220,7 +1220,6 @@ class RequestTests(unittest.TestCase): self.get.add_data("spam") self.assertTrue(self.get.has_data()) self.assertEqual("POST", self.get.get_method()) - self.assertRaises(TypeError,self.get.add_data, "more spam") def test_get_full_url(self): self.assertEqual("http://www.python.org/~jeremy/", diff --git a/Lib/urllib/request.py b/Lib/urllib/request.py index 47fe75e..d1d12e6 100644 --- a/Lib/urllib/request.py +++ b/Lib/urllib/request.py @@ -192,9 +192,6 @@ class Request: # Begin deprecated methods def add_data(self, data): - if self.has_data(): - raise TypeError("Request Obj already contains data: %s" % - self.data) self.data = data def has_data(self): |