[Python-checkins] python/dist/src/Lib difflib.py,1.10,1.11

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Tue, 29 Oct 2002 22:10:01 -0800


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

Modified Files:
	difflib.py 
Log Message:
Added missing names to __all__.


Index: difflib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/difflib.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** difflib.py	1 Jun 2002 14:18:45 -0000	1.10
--- difflib.py	30 Oct 2002 06:09:58 -0000	1.11
***************
*** 21,25 ****
  
  __all__ = ['get_close_matches', 'ndiff', 'restore', 'SequenceMatcher',
!            'Differ']
  
  class SequenceMatcher:
--- 21,25 ----
  
  __all__ = ['get_close_matches', 'ndiff', 'restore', 'SequenceMatcher',
!            'Differ','IS_CHARACTER_JUNK', 'IS_LINE_JUNK']
  
  class SequenceMatcher: