summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/urllib.py4
-rw-r--r--Lib/urllib2.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/Lib/urllib.py b/Lib/urllib.py
index 53005c8..084d32a 100644
--- a/Lib/urllib.py
+++ b/Lib/urllib.py
@@ -286,7 +286,7 @@ class URLopener:
for args in self.addheaders: apply(h.putheader, args)
h.endheaders()
if data is not None:
- h.send(data + '\r\n')
+ h.send(data)
errcode, errmsg, headers = h.getreply()
fp = h.getfile()
if errcode == 200:
@@ -364,7 +364,7 @@ class URLopener:
for args in self.addheaders: apply(h.putheader, args)
h.endheaders()
if data is not None:
- h.send(data + '\r\n')
+ h.send(data)
errcode, errmsg, headers = h.getreply()
fp = h.getfile()
if errcode == 200:
diff --git a/Lib/urllib2.py b/Lib/urllib2.py
index 992c83b..ee0bc27 100644
--- a/Lib/urllib2.py
+++ b/Lib/urllib2.py
@@ -809,7 +809,7 @@ class AbstractHTTPHandler(BaseHandler):
h.putheader(k, v)
h.endheaders()
if req.has_data():
- h.send(data + '\r\n')
+ h.send(data)
code, msg, hdrs = h.getreply()
fp = h.getfile()