Make terminator constants bytes.

This commit is contained in:
Jeremy Hylton 2007-08-29 19:08:30 +00:00
parent a5dc3db3d1
commit 88d06a7240
1 changed files with 2 additions and 2 deletions

View File

@ -28,8 +28,8 @@ POP3_PORT = 110
POP3_SSL_PORT = 995
# Line terminators (we always output CRLF, but accept any of CRLF, LFCR, LF)
CR = '\r'
LF = '\n'
CR = b'\r'
LF = b'\n'
CRLF = CR+LF