diff options
Diffstat (limited to 'Doc/library/keyword.rst')
-rw-r--r-- | Doc/library/keyword.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/library/keyword.rst b/Doc/library/keyword.rst index a4bfa50..173db23 100644 --- a/Doc/library/keyword.rst +++ b/Doc/library/keyword.rst @@ -4,6 +4,9 @@ .. module:: keyword :synopsis: Test whether a string is a keyword in Python. +**Source code:** :source:`Lib/keyword.py` + +-------------- This module allows a Python program to determine if a string is a keyword. @@ -18,4 +21,3 @@ This module allows a Python program to determine if a string is a keyword. Sequence containing all the 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. - |