Thanks to visit codestin.com Credit goes to github.com
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.
1 parent 9b0034d commit 36c0dbcCopy full SHA for 36c0dbc
1 file changed
Lib/test/test_imaplib.py
@@ -60,7 +60,7 @@ class SimpleIMAPHandler(socketserver.StreamRequestHandler):
60
timeout = 1
61
62
def _send(self, message):
63
- if verbose: print("SENT:", message.strip())
+ if verbose: print("SENT: %r" % message.strip())
64
self.wfile.write(message)
65
66
def handle(self):
@@ -84,7 +84,7 @@ def handle(self):
84
if line.endswith(b'\r\n'):
85
break
86
87
- if verbose: print('GOT:', line.strip())
+ if verbose: print('GOT: %r' % line.strip())
88
splitline = line.split()
89
tag = splitline[0].decode('ASCII')
90
cmd = splitline[1].decode('ASCII')
0 commit comments