[Python-checkins] CVS: python/dist/src/Lib hmac.py,1.3,1.4 pprint.py,1.17,1.18

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


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

Modified Files:
	hmac.py pprint.py 
Log Message:
Whitespace normalization.


Index: hmac.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/hmac.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** hmac.py	2001/11/02 21:49:20	1.3
--- hmac.py	2001/11/13 21:51:26	1.4
***************
*** 36,40 ****
          self.inner = digestmod.new()
          self.digest_size = digestmod.digest_size
!         
          blocksize = 64
          ipad = "\x36" * blocksize
--- 36,40 ----
          self.inner = digestmod.new()
          self.digest_size = digestmod.digest_size
! 
          blocksize = 64
          ipad = "\x36" * blocksize
***************
*** 98,100 ****
      """
      return HMAC(key, msg, digestmod)
- 
--- 98,99 ----

Index: pprint.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pprint.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** pprint.py	2001/11/01 17:50:38	1.17
--- pprint.py	2001/11/13 21:51:26	1.18
***************
*** 284,288 ****
          del context[objid]
          return format % _commajoin(components), readable, recursive
!         
      rep = `object`
      return rep, (rep and not rep.startswith('<')), 0
--- 284,288 ----
          del context[objid]
          return format % _commajoin(components), readable, recursive
! 
      rep = `object`
      return rep, (rep and not rep.startswith('<')), 0