From: Senthil Kumaran Date: Sun, 7 Mar 2010 04:12:02 +0000 (+0000) Subject: Reverting the changes made in r78433. X-Git-Tag: v3.2a1~1540 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57de4c45ff81e7bd75123d56129153a9d6711a8b;p=python Reverting the changes made in r78433. --- diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py index 080c2f1f49..11848e07e4 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 5bdc103563..b9de4793b3 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):