[Python-checkins] CVS: python/dist/src/Lib imaplib.py,1.32,1.33

Piers Lauder pierslauder@users.sourceforge.net
Sun, 05 Aug 2001 03:43:05 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv6502

Modified Files:
	imaplib.py 
Log Message:
fix for Bug ID 448100 - "test code using NL instead of CRNL"

Index: imaplib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/imaplib.py,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** imaplib.py	2001/07/21 01:41:30	1.32
--- imaplib.py	2001/08/05 10:43:03	1.33
***************
*** 1137,1141 ****
      PASSWD = getpass.getpass("IMAP password for %s on %s: " % (USER, host or "localhost"))
  
!     test_mesg = 'From: %s@localhost\nSubject: IMAP4 test\n\ndata...\n' % USER
      test_seq1 = (
      ('login', (USER, PASSWD)),
--- 1137,1141 ----
      PASSWD = getpass.getpass("IMAP password for %s on %s: " % (USER, host or "localhost"))
  
!     test_mesg = 'From: %(user)s@localhost%(lf)sSubject: IMAP4 test%(lf)s%(lf)sdata...%(lf)s' % {'user':USER, 'lf':CRLF}
      test_seq1 = (
      ('login', (USER, PASSWD)),