mirror of https://github.com/python/cpython
Simple module to publish list of Python keywords.
This commit is contained in:
parent
f789ee4a86
commit
90d556fb6e
|
@ -0,0 +1,37 @@
|
|||
"""Export the list of Python keywords (reserved words)."""
|
||||
|
||||
# grep '{1, "' ../Python/graminit.c | sed 's/.*"\(.*\)".*/ "\1",/' | sort
|
||||
|
||||
keywords = [
|
||||
"__assert__",
|
||||
"and",
|
||||
"break",
|
||||
"class",
|
||||
"continue",
|
||||
"def",
|
||||
"del",
|
||||
"elif",
|
||||
"else",
|
||||
"except",
|
||||
"exec",
|
||||
"finally",
|
||||
"for",
|
||||
"from",
|
||||
"global",
|
||||
"if",
|
||||
"import",
|
||||
"in",
|
||||
"is",
|
||||
"lambda",
|
||||
"not",
|
||||
"or",
|
||||
"pass",
|
||||
"print",
|
||||
"raise",
|
||||
"return",
|
||||
"try",
|
||||
"while",
|
||||
]
|
||||
|
||||
if __name__ == '__main__':
|
||||
for k in keywords: print k
|
Loading…
Reference in New Issue