mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Fix test_poplib failures.
This commit is contained in:
parent
33e7a8e813
commit
f86f285bdd
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ class POP3:
|
||||||
resp, o = self._getline()
|
resp, o = self._getline()
|
||||||
if self._debugging > 1: print('*resp*', repr(resp))
|
if self._debugging > 1: print('*resp*', repr(resp))
|
||||||
c = resp[:1]
|
c = resp[:1]
|
||||||
if c != '+':
|
if c != b'+':
|
||||||
raise error_proto(resp)
|
raise error_proto(resp)
|
||||||
return resp
|
return resp
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue