[Python-checkins] python/dist/src/Lib/email/test test_email.py,1.17.2.4,1.17.2.5

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Tue, 29 Oct 2002 14:01:09 -0800


Update of /cvsroot/python/python/dist/src/Lib/email/test
In directory usw-pr-cvs1:/tmp/cvs-serv4929/Python 2.2/Lib/email/test

Modified Files:
      Tag: release22-maint
	test_email.py 
Log Message:
Stop-gap to forestall test_email failing in MacPython: disable the line-ending test.

Index: test_email.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/test/test_email.py,v
retrieving revision 1.17.2.4
retrieving revision 1.17.2.5
diff -C2 -d -r1.17.2.4 -r1.17.2.5
*** test_email.py	14 Oct 2002 17:26:03 -0000	1.17.2.4
--- test_email.py	29 Oct 2002 22:01:06 -0000	1.17.2.5
***************
*** 1840,1843 ****
--- 1840,1846 ----
  
      def test_crlf_separation(self):
+         if sys.platform == 'mac':
+             # Skipped in MacPython 2.2.X due to line-end problems
+             return
          eq = self.assertEqual
          fp = openfile('msg_26.txt')