[Python-checkins] python/dist/src/Lib tokenize.py,1.33,1.34

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Mon, 04 Nov 2002 22:06:05 -0800


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

Modified Files:
	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.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** tokenize.py	24 Aug 2002 06:54:19 -0000	1.33
--- tokenize.py	5 Nov 2002 06:06:02 -0000	1.34
***************
*** 31,35 ****
  
  import token
! __all__ = [x for x in dir(token) if x[0] != '_'] + ["COMMENT", "tokenize", "NL"]
  del x
  del token
--- 31,36 ----
  
  import token
! __all__ = [x for x in dir(token) if x[0] != '_'] + ["COMMENT", "tokenize",
!            "generate_tokens", "NL"]
  del x
  del token