~dkuhlman/python-training-materials/Materials

« back to all changes in this revision

Viewing changes to python-3.5.2-docs-html/_sources/library/keyword.txt

  • Committer: Dave Kuhlman
  • Date: 2017-04-15 16:24:56 UTC
  • Revision ID: dkuhlman@davekuhlman.org-20170415162456-iav9vozzg4iwqwv3
Updated docs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
:mod:`keyword` --- Testing for Python keywords
 
2
==============================================
 
3
 
 
4
.. module:: keyword
 
5
   :synopsis: Test whether a string is a keyword in Python.
 
6
 
 
7
**Source code:** :source:`Lib/keyword.py`
 
8
 
 
9
--------------
 
10
 
 
11
This module allows a Python program to determine if a string is a keyword.
 
12
 
 
13
 
 
14
.. function:: iskeyword(s)
 
15
 
 
16
   Return true if *s* is a Python keyword.
 
17
 
 
18
 
 
19
.. data:: kwlist
 
20
 
 
21
   Sequence containing all the keywords defined for the interpreter.  If any
 
22
   keywords are defined to only be active when particular :mod:`__future__`
 
23
   statements are in effect, these will be included as well.