Issue #7117, continued: Change round implementation to use the correctly-rounded
[python.git] / Doc / library / keyword.rst
blob32a2d347df6b67b8787e235a279d9b65e86a22ea
2 :mod:`keyword` --- Testing for Python keywords
3 ==============================================
5 .. module:: keyword
6    :synopsis: Test whether a string is a keyword in Python.
9 This module allows a Python program to determine if a string is a keyword.
12 .. function:: iskeyword(s)
14    Return true if *s* is a Python keyword.
17 .. data:: kwlist
19    Sequence containing all the keywords defined for the interpreter.  If any
20    keywords are defined to only be active when particular :mod:`__future__`
21    statements are in effect, these will be included as well.