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 98dd2ec..c897081 100755
--- a/Lib/keyword.py
+++ b/Lib/keyword.py
@@ -10,7 +10,7 @@
     python Lib/keyword.py
 """
 
-__all__ = ["iskeyword"]
+__all__ = ["iskeyword", "kwlist"]
 
 kwlist = [
 #--start keywords--