[Python-checkins] CVS: python/dist/src/Lib/test pickletester.py,1.9,1.10 regrtest.py,1.60,1.61 test_binascii.py,1.10,1.11 test_cpickle.py,1.8,1.9 test_email.py,1.11,1.12 test_os.py,1.8,1.9 test_pickle.py,1.7,1.8 test_socket_ssl.py,1.3,1.4 test_zlib.py,1.15,1.16

Tim Peters tim_one@users.sourceforge.net
Thu, 18 Oct 2001 14:57:39 -0700


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

Modified Files:
	pickletester.py regrtest.py test_binascii.py test_cpickle.py 
	test_email.py test_os.py test_pickle.py test_socket_ssl.py 
	test_zlib.py 
Log Message:
Whitespace normalization.


Index: pickletester.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/pickletester.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** pickletester.py	2001/10/15 21:38:56	1.9
--- pickletester.py	2001/10/18 21:57:37	1.10
***************
*** 76,80 ****
            'C\nq\x05oq\x06}q\x07(U\x03fooq\x08K\x01U\x03barq\tK\x02ubh' + \
            '\x06tq\nh\nK\x05e.'
!     
  def create_data():
      c = C()
--- 76,80 ----
            'C\nq\x05oq\x06}q\x07(U\x03fooq\x08K\x01U\x03barq\tK\x02ubh' + \
            '\x06tq\nh\nK\x05e.'
! 
  def create_data():
      c = C()

Index: regrtest.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/regrtest.py,v
retrieving revision 1.60
retrieving revision 1.61
diff -C2 -d -r1.60 -r1.61
*** regrtest.py	2001/10/17 13:45:28	1.60
--- regrtest.py	2001/10/18 21:57:37	1.61
***************
*** 200,204 ****
      bad.sort()
      skipped.sort()
!     
      if good and not quiet:
          if not bad and not skipped and len(good) > 1:
--- 200,204 ----
      bad.sort()
      skipped.sort()
! 
      if good and not quiet:
          if not bad and not skipped and len(good) > 1:

Index: test_binascii.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_binascii.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** test_binascii.py	2001/10/11 14:09:03	1.10
--- test_binascii.py	2001/10/18 21:57:37	1.11
***************
*** 114,116 ****
  # Verify the treatment of Unicode strings
  verify(binascii.hexlify(u'a') == '61', "hexlify failed for Unicode")
- 
--- 114,115 ----

Index: test_cpickle.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_cpickle.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** test_cpickle.py	2001/10/15 21:38:56	1.8
--- test_cpickle.py	2001/10/18 21:57:37	1.9
***************
*** 5,9 ****
  
  class cPickleTests(AbstractPickleTests, AbstractPickleModuleTests):
!     
      def setUp(self):
          self.dumps = cPickle.dumps
--- 5,9 ----
  
  class cPickleTests(AbstractPickleTests, AbstractPickleModuleTests):
! 
      def setUp(self):
          self.dumps = cPickle.dumps

Index: test_email.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_email.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** test_email.py	2001/10/17 20:52:26	1.11
--- test_email.py	2001/10/18 21:57:37	1.12
***************
*** 292,296 ****
  From: test@dom.ain
  References: <0@dom.ain> <1@dom.ain> <2@dom.ain> <3@dom.ain> <4@dom.ain>
! 	<5@dom.ain> <6@dom.ain> <7@dom.ain> <8@dom.ain> <9@dom.ain>
  
  Test""")
--- 292,296 ----
  From: test@dom.ain
  References: <0@dom.ain> <1@dom.ain> <2@dom.ain> <3@dom.ain> <4@dom.ain>
! \t<5@dom.ain> <6@dom.ain> <7@dom.ain> <8@dom.ain> <9@dom.ain>
  
  Test""")

Index: test_os.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_os.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** test_os.py	2001/10/18 21:19:31	1.8
--- test_os.py	2001/10/18 21:57:37	1.9
***************
*** 69,73 ****
          f.write("ABC")
          f.close()
!         
      def tearDown(self):
          os.unlink(self.fname)
--- 69,73 ----
          f.write("ABC")
          f.close()
! 
      def tearDown(self):
          os.unlink(self.fname)
***************
*** 134,138 ****
              pass
  
!             
      def test_statvfs_attributes(self):
          if not hasattr(os, "statvfs"):
--- 134,138 ----
              pass
  
! 
      def test_statvfs_attributes(self):
          if not hasattr(os, "statvfs"):

Index: test_pickle.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_pickle.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** test_pickle.py	2001/10/15 21:38:56	1.7
--- test_pickle.py	2001/10/18 21:57:37	1.8
***************
*** 9,13 ****
          self.dumps = pickle.dumps
          self.loads = pickle.loads
!         
      module = pickle
      error = KeyError
--- 9,13 ----
          self.dumps = pickle.dumps
          self.loads = pickle.loads
! 
      module = pickle
      error = KeyError

Index: test_socket_ssl.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_socket_ssl.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** test_socket_ssl.py	2001/10/18 00:30:14	1.3
--- test_socket_ssl.py	2001/10/18 21:57:37	1.4
***************
*** 26,30 ****
  buf = f.read()
  f.close()
- 
- 
- 
--- 26,27 ----

Index: test_zlib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_zlib.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** test_zlib.py	2001/10/16 20:39:49	1.15
--- test_zlib.py	2001/10/18 21:57:37	1.16
***************
*** 96,100 ****
  else:
      print "max_length decompressobj succeeded"
!     
  # Misc tests of max_length
  deco = zlib.decompressobj(-12)
--- 96,100 ----
  else:
      print "max_length decompressobj succeeded"
! 
  # Misc tests of max_length
  deco = zlib.decompressobj(-12)