[Python-checkins] CVS: python/dist/src/Lib/test test_quopri.py,1.3,1.4

Tim Peters tim_one@users.sourceforge.net
Fri, 03 Aug 2001 13:40:21 -0700


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

Modified Files:
	test_quopri.py 
Log Message:
Don't use any characters C doesn't guarantee are safe for text-mode files.
This should stop the bizarre translations Jack was getting from Mac CVS.


Index: test_quopri.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_quopri.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** test_quopri.py	2001/07/21 01:41:30	1.3
--- test_quopri.py	2001/08/03 20:40:18	1.4
***************
*** 29,43 ****
  """\
  
! ¡¢£¤¥¦§¨©
! ª«¬­®¯°±²³
! ´µ¶·¸¹º»¼½¾
! ¿ÀÁÂÃÄÅÆ
! ÇÈÉÊËÌÍÎÏ
! ÐÑÒÓÔÕÖ×
! ØÙÚÛÜÝÞß
! àáâãäåæç
! èéêëìíîï
! ðñòóôõö÷
! øùúûüýþÿ
  
  characters... have fun!
--- 29,43 ----
  """\
  
! \xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9
! \xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3
! \xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe
! \xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6
! \xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf
! \xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7
! \xd8\xd9\xda\xdb\xdc\xdd\xde\xdf
! \xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7
! \xe8\xe9\xea\xeb\xec\xed\xee\xef
! \xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7
! \xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff
  
  characters... have fun!
***************
*** 69,73 ****
          ('hello\t', 'hello=09'),
          # Some long lines.  First, a single line of 108 characters
!         ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxØÙÚÛÜÝÞßxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
           '''xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=D8=D9=DA=DB=DC=DD=DE=DFx=
  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'''),
--- 69,73 ----
          ('hello\t', 'hello=09'),
          # Some long lines.  First, a single line of 108 characters
!         ('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\xd8\xd9\xda\xdb\xdc\xdd\xde\xdfxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
           '''xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=D8=D9=DA=DB=DC=DD=DE=DFx=
  xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'''),