summaryrefslogtreecommitdiff
path: root/sphinx
diff options
context:
space:
mode:
authorgeorg.brandl <devnull@localhost>2008-02-25 20:18:15 +0000
committergeorg.brandl <devnull@localhost>2008-02-25 20:18:15 +0000
commit96bece67d269db3cca9660c23ac4a761b358587b (patch)
tree854ef6fb787c27a95721e65ee252ca54a724b98d /sphinx
parentec6d8993484c0137cea00272f4e4bd6d8a986208 (diff)
downloadsphinx-96bece67d269db3cca9660c23ac4a761b358587b.tar.gz
Rename sphinx.addons to sphinx.ext.
Diffstat (limited to 'sphinx')
-rw-r--r--sphinx/ext/__init__.py (renamed from sphinx/addons/__init__.py)0
-rw-r--r--sphinx/ext/coverage.py (renamed from sphinx/addons/coverage.py)4
-rw-r--r--sphinx/ext/ifconfig.py (renamed from sphinx/addons/ifconfig.py)4
-rw-r--r--sphinx/ext/refcounting.py (renamed from sphinx/addons/refcounting.py)4
4 files changed, 6 insertions, 6 deletions
diff --git a/sphinx/addons/__init__.py b/sphinx/ext/__init__.py
index d0fb18c8..d0fb18c8 100644
--- a/sphinx/addons/__init__.py
+++ b/sphinx/ext/__init__.py
diff --git a/sphinx/addons/coverage.py b/sphinx/ext/coverage.py
index 08963e80..ed29ceea 100644
--- a/sphinx/addons/coverage.py
+++ b/sphinx/ext/coverage.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
- sphinx.addons.coverage
- ~~~~~~~~~~~~~~~~~~~~~~
+ sphinx.ext.coverage
+ ~~~~~~~~~~~~~~~~~~~
Check Python modules and C API for coverage. Mostly written by Josip
Dzolonga for the Google Highly Open Participation contest.
diff --git a/sphinx/addons/ifconfig.py b/sphinx/ext/ifconfig.py
index 1f12b62e..f6fb7ed3 100644
--- a/sphinx/addons/ifconfig.py
+++ b/sphinx/ext/ifconfig.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
- sphinx.addons.ifconfig
- ~~~~~~~~~~~~~~~~~~~~~~
+ sphinx.ext.ifconfig
+ ~~~~~~~~~~~~~~~~~~~
Provides the ``ifconfig`` directive that allows to write documentation
that is included depending on configuration variables.
diff --git a/sphinx/addons/refcounting.py b/sphinx/ext/refcounting.py
index 84ca5f05..9bcd3cdf 100644
--- a/sphinx/addons/refcounting.py
+++ b/sphinx/ext/refcounting.py
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""
- sphinx.addons.refcounting
- ~~~~~~~~~~~~~~~~~~~~~~~~~
+ sphinx.ext.refcounting
+ ~~~~~~~~~~~~~~~~~~~~~~
Supports reference count annotations for C API functions. Based on
refcount.py and anno-api.py in the old Python documentation tools.