Author: collin.winter
Date: Mon Jul 23 02:24:10 2007
New Revision: 56498

Modified:
   python/branches/py3k-struni/Lib/poplib.py
Log:
Fix test_poplib failures.

Modified: python/branches/py3k-struni/Lib/poplib.py
==============================================================================
--- python/branches/py3k-struni/Lib/poplib.py   (original)
+++ python/branches/py3k-struni/Lib/poplib.py   Mon Jul 23 02:24:10 2007
@@ -123,7 +123,7 @@
         resp, o = self._getline()
         if self._debugging > 1: print('*resp*', repr(resp))
         c = resp[:1]
-        if c != '+':
+        if c != b'+':
             raise error_proto(resp)
         return resp
 
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to