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 1342474 commit f585ed1Copy full SHA for f585ed1
Lib/http/client.py
@@ -984,7 +984,7 @@ def send(self, data):
984
print("send:", repr(data))
985
if hasattr(data, "read") :
986
if self.debuglevel > 0:
987
- print("sendIng a read()able")
+ print("sending a readable")
988
encode = self._is_textIO(data)
989
if encode and self.debuglevel > 0:
990
print("encoding file using iso-8859-1")
@@ -1017,7 +1017,7 @@ def _output(self, s):
1017
1018
def _read_readable(self, readable):
1019
1020
+ print("reading a readable")
1021
encode = self._is_textIO(readable)
1022
1023
0 commit comments