From 3f0eda7b766b01184accb02448acd28be02b1ab5 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 30 Oct 2002 05:26:45 +0000 Subject: [PATCH] Patrick K. O'Brien noticed 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 98dd2ec2cab2..c89708157f28 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-- -- 2.47.3