Patch # 1094 by Serge Julien. Fix some bytes/str comparisons.

(Bah, the poplib test didn't catch this.)
This commit is contained in:
Guido van Rossum 2007-09-10 00:27:13 +00:00
parent 19ab2bd1c7
commit 0ec3477989
1 changed files with 2 additions and 2 deletions

View File

@ -134,8 +134,8 @@ class POP3:
resp = self._getresp()
list = []; octets = 0
line, o = self._getline()
while line != '.':
if line[:2] == '..':
while line != b'.':
if line[:2] == b'..':
o = o-1
line = line[1:]
octets = octets + o