summaryrefslogtreecommitdiff
path: root/Lib/keyword.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2002-10-30 05:17:22 +0000
committerRaymond Hettinger <python@rcn.com>2002-10-30 05:17:22 +0000
commit758d33575b1d4c5c9fb9a7e2016cb555cbb66bf3 (patch)
tree214245fdad98e042db66e2e37a728d5db47aded6 /Lib/keyword.py
parentbdb74e077c89d272c9ca0c9de73942de948b21d9 (diff)
downloadcpython-758d33575b1d4c5c9fb9a7e2016cb555cbb66bf3.tar.gz
Patrick K. O'Brien notices that kwlist was missing from __all__.
Added because it is part of the documented interface.
Diffstat (limited to 'Lib/keyword.py')
-rwxr-xr-xLib/keyword.py2
1 files changed, 1 insertions, 1 deletions
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--