cpython/Doc/lib/libkeyword.tex

21 lines
582 B
TeX
Raw Normal View History

\section{\module{keyword} ---
1999-02-19 20:14:17 -04:00
Testing for Python keywords}
1999-02-19 20:14:17 -04:00
\declaremodule{standard}{keyword}
\modulesynopsis{Test whether a string is a keyword in Python.}
1997-10-06 18:39:16 -03:00
This module allows a Python program to determine if a string is a
2002-01-24 12:38:53 -04:00
keyword.
1997-10-06 18:39:16 -03:00
\begin{funcdesc}{iskeyword}{s}
Return true if \var{s} is a Python keyword.
\end{funcdesc}
2002-01-24 12:38:53 -04:00
\begin{datadesc}{kwlist}
Sequence containing all the keywords defined for the interpreter. If
any keywords are defined to only be active when particular
\module{__future__} statements are in effect, these will be included
as well.
\end{datadesc}