diff options
author | Georg Brandl <georg@python.org> | 2013-10-12 17:54:30 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-12 17:54:30 (GMT) |
commit | 5c01d99c12876263d8cc700a11cce9ad88994096 (patch) | |
tree | d1aa78ca55c2d235874649934d26b170a6a37dae /Doc/conf.py | |
parent | 5db7c54f961141efae123a69938ba4944dffefc7 (diff) | |
download | cpython-5c01d99c12876263d8cc700a11cce9ad88994096.zip cpython-5c01d99c12876263d8cc700a11cce9ad88994096.tar.gz cpython-5c01d99c12876263d8cc700a11cce9ad88994096.tar.bz2 |
Introduce support for documenting which C API elements are not part of the stable/limited API.
Diffstat (limited to 'Doc/conf.py')
-rw-r--r-- | Doc/conf.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/conf.py b/Doc/conf.py index 6b085e0..5b63cad 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -12,8 +12,8 @@ sys.path.append(os.path.abspath('tools/sphinxext')) # General configuration # --------------------- -extensions = ['sphinx.ext.refcounting', 'sphinx.ext.coverage', - 'sphinx.ext.doctest', 'pyspecific'] +extensions = ['sphinx.ext.coverage', 'sphinx.ext.doctest', + 'pyspecific', 'c_annotations'] templates_path = ['tools/sphinxext'] # General substitutions. |