summaryrefslogtreecommitdiff
path: root/Lib/keyword.py
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2006-02-28 22:50:17 +0000
committerThomas Wouters <thomas@python.org>2006-02-28 22:50:17 +0000
commit965e65eab2e8220d0ddf8b863b5275e397d20469 (patch)
tree2c468745c298c5a9398f711e5ff866a19c51e344 /Lib/keyword.py
parentc72d77a58709460667d10bfc9a3cb9db66f1d9d9 (diff)
downloadcpython-965e65eab2e8220d0ddf8b863b5275e397d20469.tar.gz
Regenerate.
Diffstat (limited to 'Lib/keyword.py')
-rwxr-xr-xLib/keyword.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/keyword.py b/Lib/keyword.py
index 223a88a9de..cd1d55e8a2 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--
]