Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`keyword` --- Testing for Python keywords |
| 2 | ============================================== |
| 3 | |
| 4 | .. module:: keyword |
| 5 | :synopsis: Test whether a string is a keyword in Python. |
| 6 | |
Raymond Hettinger | 1048094 | 2011-01-10 03:26:08 +0000 | [diff] [blame^] | 7 | **Source code:** :source:`Lib/keyword.py` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 8 | |
| 9 | This module allows a Python program to determine if a string is a keyword. |
| 10 | |
| 11 | |
| 12 | .. function:: iskeyword(s) |
| 13 | |
| 14 | Return true if *s* is a Python keyword. |
| 15 | |
| 16 | |
| 17 | .. data:: kwlist |
| 18 | |
| 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. |