Commit 5a2da3b3 authored by Senthil Kumaran's avatar Senthil Kumaran

Use proper variable name 'data' instead of 'str' in the send method.

parent 7cafd264
...@@ -730,8 +730,8 @@ class HTTPConnection: ...@@ -730,8 +730,8 @@ class HTTPConnection:
self.__response = None self.__response = None
self.__state = _CS_IDLE self.__state = _CS_IDLE
def send(self, str): def send(self, data):
"""Send `str' to the server.""" """Send `data' to the server."""
if self.sock is None: if self.sock is None:
if self.auto_open: if self.auto_open:
self.connect() self.connect()
...@@ -739,14 +739,14 @@ class HTTPConnection: ...@@ -739,14 +739,14 @@ class HTTPConnection:
raise NotConnected() raise NotConnected()
if self.debuglevel > 0: if self.debuglevel > 0:
print("send:", repr(str)) print("send:", repr(data))
blocksize = 8192 blocksize = 8192
if hasattr(str, "read") : if hasattr(data, "read") :
if self.debuglevel > 0: if self.debuglevel > 0:
print("sendIng a read()able") print("sendIng a read()able")
encode = False encode = False
try: try:
mode = str.mode mode = data.mode
except AttributeError: except AttributeError:
# io.BytesIO and other file-like objects don't have a `mode` # io.BytesIO and other file-like objects don't have a `mode`
# attribute. # attribute.
...@@ -757,14 +757,14 @@ class HTTPConnection: ...@@ -757,14 +757,14 @@ class HTTPConnection:
if self.debuglevel > 0: if self.debuglevel > 0:
print("encoding file using iso-8859-1") print("encoding file using iso-8859-1")
while 1: while 1:
data = str.read(blocksize) datablock = data.read(blocksize)
if not data: if not datablock:
break break
if encode: if encode:
data = data.encode("iso-8859-1") datablock = datablock.encode("iso-8859-1")
self.sock.sendall(data) self.sock.sendall(datablock)
else: else:
self.sock.sendall(str) self.sock.sendall(data)
def _output(self, s): def _output(self, s):
"""Add a line of output to the current request buffer. """Add a line of output to the current request buffer.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment