Commit 2b62b96c authored by Jeremy Hylton's avatar Jeremy Hylton

Make terminator constants bytes.

parent 0294f556
...@@ -28,8 +28,8 @@ POP3_PORT = 110 ...@@ -28,8 +28,8 @@ POP3_PORT = 110
POP3_SSL_PORT = 995 POP3_SSL_PORT = 995
# Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF) # Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
CR = '\r' CR = b'\r'
LF = '\n' LF = b'\n'
CRLF = CR+LF CRLF = CR+LF
......
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