From edc853e2f49e140dd182d688bf57765caa2f6118 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 30 Oct 2002 05:17:22 +0000 Subject: [PATCH] Patrick K. O'Brien notices that kwlist was missing from __all__. Added because it is part of the documented interface. --- Lib/keyword.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/keyword.py b/Lib/keyword.py index 98dd2ec2cab..c89708157f2 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--