diff options
author | Raymond Hettinger <python@rcn.com> | 2002-10-30 05:17:22 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-10-30 05:17:22 (GMT) |
commit | edc853e2f49e140dd182d688bf57765caa2f6118 (patch) | |
tree | 727d1bb74a8340f94075db3e09618426715a2f90 /Lib/keyword.py | |
parent | 37e477216beb70d100a9d4ca670158d33f77cd96 (diff) | |
download | cpython-edc853e2f49e140dd182d688bf57765caa2f6118.zip cpython-edc853e2f49e140dd182d688bf57765caa2f6118.tar.gz cpython-edc853e2f49e140dd182d688bf57765caa2f6118.tar.bz2 |
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-x | Lib/keyword.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ the python source tree after building the interpreter and run: python Lib/keyword.py """ -__all__ = ["iskeyword"] +__all__ = ["iskeyword", "kwlist"] kwlist = [ #--start keywords-- |