From: Raymond Hettinger Date: Wed, 30 Oct 2002 05:17:22 +0000 (+0000) Subject: Patrick K. O'Brien notices that kwlist was missing from __all__. X-Git-Tag: v2.3c1~3654 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=edc853e2f49e140dd182d688bf57765caa2f6118;p=python Patrick K. O'Brien notices that kwlist was missing from __all__. Added because it is part of the documented interface. --- diff --git a/Lib/keyword.py b/Lib/keyword.py index 98dd2ec2ca..c89708157f 100755 --- a/Lib/keyword.py +++ b/Lib/keyword.py @@ -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--