diff options
author | Thomas Wouters <thomas@python.org> | 2006-02-28 22:50:17 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2006-02-28 22:50:17 (GMT) |
commit | 1f1c16a8121ffbc706f9a762ba89c7e6245d2b60 (patch) | |
tree | e57d05280c95cc198b9e04eecddb41483e41e784 | |
parent | 53d960c01029ca5d435d625ea8370e5a53a84a3b (diff) | |
download | cpython-1f1c16a8121ffbc706f9a762ba89c7e6245d2b60.zip cpython-1f1c16a8121ffbc706f9a762ba89c7e6245d2b60.tar.gz cpython-1f1c16a8121ffbc706f9a762ba89c7e6245d2b60.tar.bz2 |
Regenerate.
-rwxr-xr-x | Lib/keyword.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/keyword.py b/Lib/keyword.py index 223a88a..cd1d55e 100755 --- a/Lib/keyword.py +++ b/Lib/keyword.py @@ -15,6 +15,7 @@ __all__ = ["iskeyword", "kwlist"] kwlist = [ #--start keywords-- 'and', + 'as', 'assert', 'break', 'class', @@ -42,6 +43,7 @@ kwlist = [ 'return', 'try', 'while', + 'with', 'yield', #--end keywords-- ] |