[Python-checkins] python/dist/src/Lib difflib.py,1.21,1.22

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Sat Jul 31 02:19:45 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25634/Lib

Modified Files:
	difflib.py 
Log Message:
Repair typo in docstring.


Index: difflib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/difflib.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** difflib.py	10 Jul 2004 23:54:07 -0000	1.21
--- difflib.py	31 Jul 2004 00:19:43 -0000	1.22
***************
*** 601,605 ****
  
          Where T is the total number of elements in both sequences, and
!         M is the number of matches, this is 2,0*M / T.
          Note that this is 1 if the sequences are identical, and 0 if
          they have nothing in common.
--- 601,605 ----
  
          Where T is the total number of elements in both sequences, and
!         M is the number of matches, this is 2.0*M / T.
          Note that this is 1 if the sequences are identical, and 0 if
          they have nothing in common.



More information about the Python-checkins mailing list