We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
read()able
http.client
1 parent b31cfd2 commit 8ec8ba9Copy full SHA for 8ec8ba9
Lib/http/client.py
@@ -1024,7 +1024,7 @@ def send(self, data):
1024
print("send:", repr(data))
1025
if hasattr(data, "read") :
1026
if self.debuglevel > 0:
1027
- print("sendIng a read()able")
+ print("sending a readable")
1028
encode = self._is_textIO(data)
1029
if encode and self.debuglevel > 0:
1030
print("encoding file using iso-8859-1")
@@ -1054,7 +1054,7 @@ def _output(self, s):
1054
1055
def _read_readable(self, readable):
1056
1057
+ print("reading a readable")
1058
encode = self._is_textIO(readable)
1059
1060
0 commit comments