[Python-checkins] python/dist/src/Lib keyword.py,1.11,1.12

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Tue, 29 Oct 2002 21:17:24 -0800


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

Modified Files:
	keyword.py 
Log Message:
Patrick K. O'Brien notices that kwlist was missing from __all__.
Added because it is part of the documented interface.


Index: keyword.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/keyword.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** keyword.py	19 Jun 2001 00:26:25 -0000	1.11
--- keyword.py	30 Oct 2002 05:17:22 -0000	1.12
***************
*** 11,15 ****
  """
  
! __all__ = ["iskeyword"]
  
  kwlist = [
--- 11,15 ----
  """
  
! __all__ = ["iskeyword", "kwlist"]
  
  kwlist = [