Guido van Rossum added the comment:
Oops, I accidentally deleted the patch. Here is is again.
Thanks for the patch! I've applied it.
Committed revision 58072.
----------
assignee: -> gvanrossum
nosy: +gvanrossum
resolution: -> fixed
status: open -> closed
__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1094>
__________________________________
--- C:/Python30/Lib/poplib.py~ Mon Sep 03 11:33:24 2007
+++ C:/Python30/Lib/poplib.py Mon Sep 03 10:43:47 2007
@@ -134,8 +134,8 @@
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
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com