[Python-checkins] CVS: python/dist/src/Lib/test test_dumbdbm.py,1.3,1.4 test_hmac.py,1.2,1.3 test_pep247.py,1.1,1.2

Tim Peters tim_one@users.sourceforge.net
Tue, 13 Nov 2001 13:51:28 -0800


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

Modified Files:
	test_dumbdbm.py test_hmac.py test_pep247.py 
Log Message:
Whitespace normalization.


Index: test_dumbdbm.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_dumbdbm.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** test_dumbdbm.py	2001/11/13 20:16:52	1.3
--- test_dumbdbm.py	2001/11/13 21:51:26	1.4
***************
*** 25,29 ****
          self._dkeys = self._dict.keys()
          self._dkeys.sort()
!         
      def test_dumbdbm_creation(self):
          for ext in [".dir", ".dat", ".bak"]:
--- 25,29 ----
          self._dkeys = self._dict.keys()
          self._dkeys.sort()
! 
      def test_dumbdbm_creation(self):
          for ext in [".dir", ".dat", ".bak"]:
***************
*** 58,62 ****
          for key in self._dict:
              self.assertEqual(self._dict[key], f[key])
!         
      def keys_helper(self, f):
          keys = f.keys()
--- 58,62 ----
          for key in self._dict:
              self.assertEqual(self._dict[key], f[key])
! 
      def keys_helper(self, f):
          keys = f.keys()

Index: test_hmac.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_hmac.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** test_hmac.py	2001/11/02 21:49:59	1.2
--- test_hmac.py	2001/11/13 21:51:26	1.3
***************
*** 46,50 ****
          except:
              self.fail("Constructor call with sha module raised exception.")
!         
  class SanityTestCase(unittest.TestCase):
      def test_default_is_md5(self):
--- 46,50 ----
          except:
              self.fail("Constructor call with sha module raised exception.")
! 
  class SanityTestCase(unittest.TestCase):
      def test_default_is_md5(self):
***************
*** 107,109 ****
  if __name__ == "__main__":
      test_main()
- 
--- 107,108 ----

Index: test_pep247.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_pep247.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** test_pep247.py	2001/11/02 21:46:17	1.1
--- test_pep247.py	2001/11/13 21:51:26	1.2
***************
*** 1,5 ****
  #
  # Test suite to check compliance with PEP 247, the standard API for
! # hashing algorithms. 
  #
  
--- 1,5 ----
  #
  # Test suite to check compliance with PEP 247, the standard API for
! # hashing algorithms.
  #