2007-08-15 11:28:22 -03:00
|
|
|
:mod:`keyword` --- Testing for Python keywords
|
|
|
|
==============================================
|
|
|
|
|
|
|
|
.. module:: keyword
|
|
|
|
:synopsis: Test whether a string is a keyword in Python.
|
|
|
|
|
2011-01-09 23:26:08 -04:00
|
|
|
**Source code:** :source:`Lib/keyword.py`
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2011-01-10 15:54:11 -04:00
|
|
|
--------------
|
|
|
|
|
2020-03-14 16:09:15 -03:00
|
|
|
This module allows a Python program to determine if a string is a
|
2021-10-23 13:24:02 -03:00
|
|
|
:ref:`keyword <keywords>` or :ref:`soft keyword <soft-keywords>`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. function:: iskeyword(s)
|
|
|
|
|
2020-03-14 16:09:15 -03:00
|
|
|
Return ``True`` if *s* is a Python :ref:`keyword <keywords>`.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. data:: kwlist
|
|
|
|
|
2020-03-14 16:09:15 -03:00
|
|
|
Sequence containing all the :ref:`keywords <keywords>` defined for the
|
|
|
|
interpreter. If any keywords are defined to only be active when particular
|
|
|
|
:mod:`__future__` statements are in effect, these will be included as well.
|
2020-06-27 16:00:29 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. function:: issoftkeyword(s)
|
|
|
|
|
2021-10-23 13:24:02 -03:00
|
|
|
Return ``True`` if *s* is a Python :ref:`soft keyword <soft-keywords>`.
|
2020-06-27 16:00:29 -03:00
|
|
|
|
|
|
|
.. versionadded:: 3.9
|
|
|
|
|
|
|
|
|
|
|
|
.. data:: softkwlist
|
|
|
|
|
2021-10-23 13:24:02 -03:00
|
|
|
Sequence containing all the :ref:`soft keywords <soft-keywords>` defined for the
|
2020-06-27 16:00:29 -03:00
|
|
|
interpreter. If any soft keywords are defined to only be active when particular
|
|
|
|
:mod:`__future__` statements are in effect, these will be included as well.
|
|
|
|
|
|
|
|
.. versionadded:: 3.9
|