summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHanno Schlichting <hanno@hannosch.eu>2014-03-14 13:59:13 +0100
committerHanno Schlichting <hanno@hannosch.eu>2014-03-14 13:59:13 +0100
commitfb0db8e74d8da41ea3edf93c5c8e29a35d257c59 (patch)
tree24c4f2e3539f269ee691b84f0e896ed577020c4b /docs
parent472d774155cb3c04471ced8ef81dac3992ab45da (diff)
downloadkazoo-fb0db8e74d8da41ea3edf93c5c8e29a35d257c59.tar.gz
Remove zope.interface dependency, closes #131.
Diffstat (limited to 'docs')
-rw-r--r--docs/api/interfaces.rst4
-rw-r--r--docs/conf.py1
2 files changed, 2 insertions, 3 deletions
diff --git a/docs/api/interfaces.rst b/docs/api/interfaces.rst
index aa98865..5f156e8 100644
--- a/docs/api/interfaces.rst
+++ b/docs/api/interfaces.rst
@@ -16,7 +16,7 @@ If the developer needs to use objects implementing the :class:`IAsyncResult`
interface, the :meth:`IHandler.async_result` method must be used instead of
instantiating one directly.
- .. autointerface:: IHandler
+ .. autoclass:: IHandler
:members:
Private API
@@ -29,5 +29,5 @@ instead of taking a completion callback for async functions, developers
wishing to have their own callback called should use the
:meth:`IAsyncResult.rawlink` method.
- .. autointerface:: IAsyncResult
+ .. autoclass:: IAsyncResult
:members:
diff --git a/docs/conf.py b/docs/conf.py
index bdb7cc4..c5b9769 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -41,7 +41,6 @@ extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.viewcode',
- 'repoze.sphinx.autointerface',
]
# Add any paths that contain templates here, relative to this directory.