diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-06-27 19:00:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-27 19:00:29 (GMT) |
commit | 89e82c4a6285c89c054980591c078245a5cc6337 (patch) | |
tree | 59d9816406d250e6630f46feba8ed55c4a30af48 /Doc/library/keyword.rst | |
parent | c8f29ad986f8274fc5fbf889bdd2a211878856b9 (diff) | |
download | cpython-89e82c4a6285c89c054980591c078245a5cc6337.zip cpython-89e82c4a6285c89c054980591c078245a5cc6337.tar.gz cpython-89e82c4a6285c89c054980591c078245a5cc6337.tar.bz2 |
Add soft keywords to the documentation (GH-21185)
Diffstat (limited to 'Doc/library/keyword.rst')
-rw-r--r-- | Doc/library/keyword.rst | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Doc/library/keyword.rst b/Doc/library/keyword.rst index acec45c..5cae79f 100644 --- a/Doc/library/keyword.rst +++ b/Doc/library/keyword.rst @@ -22,3 +22,19 @@ This module allows a Python program to determine if a string is a 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. + + +.. function:: issoftkeyword(s) + + Return ``True`` if *s* is a Python soft :ref:`keyword <keywords>`. + + .. versionadded:: 3.9 + + +.. data:: softkwlist + + Sequence containing all the soft :ref:`keywords <keywords>` defined for the + 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 |