summaryrefslogtreecommitdiffstats
path: root/Lib/urllib
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-03-07 04:13:48 (GMT)
committerSenthil Kumaran <orsenthil@gmail.com>2010-03-07 04:13:48 (GMT)
commit056c060589a2c90eea2555495b83ba04de850d28 (patch)
treefa2ac6df3ce7aea65f0a348100e2097c9d0805c1 /Lib/urllib
parent83b32fddd6f3f5965558dd20df6764de46aefd9f (diff)
downloadcpython-056c060589a2c90eea2555495b83ba04de850d28.zip
cpython-056c060589a2c90eea2555495b83ba04de850d28.tar.gz
cpython-056c060589a2c90eea2555495b83ba04de850d28.tar.bz2
Reverting the change made in r78434
Diffstat (limited to 'Lib/urllib')
-rw-r--r--Lib/urllib/request.py3
1 files changed, 0 insertions, 3 deletions
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):