summaryrefslogtreecommitdiffstats
path: root/Lib/urllib2.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-07-04 05:18:29 (GMT)
committerFred Drake <fdrake@acm.org>2001-07-04 05:18:29 (GMT)
commitec3dfdee6a09e1ad8d4e319876d0cf7691397245 (patch)
tree267024e9c1e3cb32124c6ff1642f8f0ddf105aff /Lib/urllib2.py
parentd153a980e5fd13e6ab53f64b94431e82e0fb5ff4 (diff)
downloadcpython-ec3dfdee6a09e1ad8d4e319876d0cf7691397245.zip
cpython-ec3dfdee6a09e1ad8d4e319876d0cf7691397245.tar.gz
cpython-ec3dfdee6a09e1ad8d4e319876d0cf7691397245.tar.bz2
Only write out one blank line before the request data.
This closes SF patch #419459.
Diffstat (limited to 'Lib/urllib2.py')
-rw-r--r--Lib/urllib2.py2
1 files changed, 1 insertions, 1 deletions
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()