]> granicus.if.org Git - python/commitdiff
Patrick K. O'Brien notices that kwlist was missing from __all__.
authorRaymond Hettinger <python@rcn.com>
Wed, 30 Oct 2002 05:17:22 +0000 (05:17 +0000)
committerRaymond Hettinger <python@rcn.com>
Wed, 30 Oct 2002 05:17:22 +0000 (05:17 +0000)
Added because it is part of the documented interface.

Lib/keyword.py

index 98dd2ec2cab2a3bc202478beefbd1eafe1b3c9b5..c89708157f28f83d0bf4fff16c25ea2bb7066a03 100755 (executable)
@@ -10,7 +10,7 @@ the python source tree after building the interpreter and run:
     python Lib/keyword.py
 """
 
-__all__ = ["iskeyword"]
+__all__ = ["iskeyword", "kwlist"]
 
 kwlist = [
 #--start keywords--