[Python-checkins] python/dist/src/Lib tokenize.py,1.28.14.2,1.28.14.3

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Mon, 04 Nov 2002 22:08:14 -0800


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

Modified Files:
      Tag: release22-maint
	tokenize.py 
Log Message:
SF 633560:  tokenize.__all__ needs "generate_tokens"


Index: tokenize.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/tokenize.py,v
retrieving revision 1.28.14.2
retrieving revision 1.28.14.3
diff -C2 -d -r1.28.14.2 -r1.28.14.3
*** tokenize.py	7 Oct 2002 01:18:17 -0000	1.28.14.2
--- tokenize.py	5 Nov 2002 06:08:11 -0000	1.28.14.3
***************
*** 33,37 ****
  
  import token
! __all__ = [x for x in dir(token) if x[0] != '_'] + ["COMMENT", "tokenize", "NL"]
  del token
  
--- 33,38 ----
  
  import token
! __all__ = [x for x in dir(token) if x[0] != '_'] + ["COMMENT", "tokenize",
!            "generate_tokens", "NL"]
  del token