[Python-checkins] r84376 - python/branches/py3k/Doc/tools/sphinxext/pyspecific.py

benjamin.peterson python-checkins at python.org
Tue Aug 31 16:31:01 CEST 2010


Author: benjamin.peterson
Date: Tue Aug 31 16:31:01 2010
New Revision: 84376

Log:
add nonlocal to pydoc topics #9724

Modified:
   python/branches/py3k/Doc/tools/sphinxext/pyspecific.py

Modified: python/branches/py3k/Doc/tools/sphinxext/pyspecific.py
==============================================================================
--- python/branches/py3k/Doc/tools/sphinxext/pyspecific.py	(original)
+++ python/branches/py3k/Doc/tools/sphinxext/pyspecific.py	Tue Aug 31 16:31:01 2010
@@ -110,12 +110,12 @@
     '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


More information about the Python-checkins mailing list