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

Eric S. Raymond esr@users.sourceforge.net
Thu, 08 Feb 2001 23:40:19 -0800


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

Modified Files:
	smtplib.py 
Log Message:
Fixed a bug in the test jig.


Index: smtplib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/smtplib.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -r1.33 -r1.34
*** smtplib.py	2001/02/09 05:40:38	1.33
--- smtplib.py	2001/02/09 07:40:17	1.34
***************
*** 524,528 ****
  
      fromaddr = prompt("From")
!     toaddrs  = ','.split(prompt("To"))
      print "Enter message, end with ^D:"
      msg = ''
--- 524,528 ----
  
      fromaddr = prompt("From")
!     toaddrs  = prompt("To").split(',')
      print "Enter message, end with ^D:"
      msg = ''