[Python-checkins] python/dist/src/Lib/test/output test_httplib,1.1.22.1,1.1.22.2

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Thu, 10 Oct 2002 14:13:51 -0700


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

Modified Files:
      Tag: release22-maint
	test_httplib 
Log Message:
Use \n as line separator in stead of \r\n, which causes problems in MacPython 2.2.

Index: test_httplib
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/output/test_httplib,v
retrieving revision 1.1.22.1
retrieving revision 1.1.22.2
diff -C2 -d -r1.1.22.1 -r1.1.22.2
*** test_httplib	12 Jul 2002 15:52:26 -0000	1.1.22.1
--- test_httplib	10 Oct 2002 21:13:48 -0000	1.1.22.2
***************
*** 1,10 ****
  test_httplib
! reply: 'HTTP/1.1 200 Ok\r\n'
  Text
! reply: 'HTTP/1.1 400.100 Not Ok\r\n'
  BadStatusLine raised as expected
  InvalidURL raised as expected
  InvalidURL raised as expected
! reply: 'HTTP/1.1 200 OK\r\n'
! header: Set-Cookie: Customer="WILE_E_COYOTE"; Version="1"; Path="/acme"
! header: Set-Cookie: Part_Number="Rocket_Launcher_0001"; Version="1"; Path="/acme"
--- 1,10 ----
  test_httplib
! reply: 'HTTP/1.1 200 Ok\n'
  Text
! reply: 'HTTP/1.1 400.100 Not Ok\n'
  BadStatusLine raised as expected
  InvalidURL raised as expected
  InvalidURL raised as expected
! reply: 'HTTP/1.1 200 OK\n'
! header: Set-Cookie: Customer="WILE_E_COYOTE"; Version="1"; Path="/acme"
! header: Set-Cookie: Part_Number="Rocket_Launcher_0001"; Version="1"; Path="/acme"