diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-08-31 14:31:01 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-08-31 14:31:01 (GMT) |
commit | f5a3d699a7297123f00b4d1680a12f7d08c31237 (patch) | |
tree | 3daac4f8c848ea0c757d8d22281b114cab912843 /Doc/tools | |
parent | dc5097ff07f246bac461939ab6a6cba5d71b78c8 (diff) | |
download | cpython-f5a3d699a7297123f00b4d1680a12f7d08c31237.zip cpython-f5a3d699a7297123f00b4d1680a12f7d08c31237.tar.gz cpython-f5a3d699a7297123f00b4d1680a12f7d08c31237.tar.bz2 |
add nonlocal to pydoc topics #9724
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/sphinxext/pyspecific.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/tools/sphinxext/pyspecific.py b/Doc/tools/sphinxext/pyspecific.py index d02cd46..0a5df83 100644 --- a/Doc/tools/sphinxext/pyspecific.py +++ b/Doc/tools/sphinxext/pyspecific.py @@ -110,12 +110,12 @@ pydoc_topic_labels = [ 'del', 'dict', 'dynamic-features', 'else', 'exceptions', 'execmodel', 'exprlists', 'floating', 'for', 'formatstrings', 'function', 'global', 'id-classes', 'identifiers', 'if', 'imaginary', 'import', 'in', 'integers', - 'lambda', 'lists', 'naming', 'numbers', 'numeric-types', 'objects', - 'operator-summary', 'pass', 'power', 'raise', 'return', 'sequence-types', - 'shifting', 'slicings', 'specialattrs', 'specialnames', 'string-methods', - 'strings', 'subscriptions', 'truth', 'try', 'types', 'typesfunctions', - 'typesmapping', 'typesmethods', 'typesmodules', 'typesseq', - 'typesseq-mutable', 'unary', 'while', 'with', 'yield' + 'lambda', 'lists', 'naming', 'nonlocal', 'numbers', 'numeric-types', + 'objects', 'operator-summary', 'pass', 'power', 'raise', 'return', + 'sequence-types', 'shifting', 'slicings', 'specialattrs', 'specialnames', + 'string-methods', 'strings', 'subscriptions', 'truth', 'try', 'types', + 'typesfunctions', 'typesmapping', 'typesmethods', 'typesmodules', + 'typesseq', 'typesseq-mutable', 'unary', 'while', 'with', 'yield' ] from os import path |