[Python-checkins] CVS: python/dist/src/Lib regsub.py,1.11,1.12

Eric S. Raymond esr@users.sourceforge.net
Fri, 09 Feb 2001 01:21:03 -0800


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

Modified Files:
	regsub.py 
Log Message:
Oops...that will teach me to hit ^C^C too fast.  Test passed.


Index: regsub.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/regsub.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** regsub.py	2001/02/09 09:19:27	1.11
--- regsub.py	2001/02/09 09:21:01	1.12
***************
*** 111,115 ****
      for i in range(0, len(words), 2):
          words[i] = words[i].capitalize()
!     return "".joinfields(words)
  
  
--- 111,115 ----
      for i in range(0, len(words), 2):
          words[i] = words[i].capitalize()
!     return "".join(words)