diff options
| author | Jason Madden <jamadden@gmail.com> | 2021-03-15 06:32:02 -0500 |
|---|---|---|
| committer | Jason Madden <jamadden@gmail.com> | 2021-03-15 06:32:02 -0500 |
| commit | a8d56b9d3cd84593c0d6c6fe509b5c60058f01a8 (patch) | |
| tree | 7bd07017cfdee4d90edae9dc66b1e364f2817b80 /docs | |
| parent | 8a8285133b6f8ddc93ac54f1af84775e1ba6f698 (diff) | |
| download | zope-interface-issue224.tar.gz | |
Move itertools import to module scope.issue224
Also tweak docs.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/api/adapters.rst | 2 | ||||
| -rw-r--r-- | docs/conf.py | 6 |
2 files changed, 6 insertions, 2 deletions
diff --git a/docs/api/adapters.rst b/docs/api/adapters.rst index 12139aa..616c2dc 100644 --- a/docs/api/adapters.rst +++ b/docs/api/adapters.rst @@ -8,7 +8,7 @@ Usage of the adapter registry is documented in :ref:`adapter-registry`. The adapter registry's API is defined by :class:`zope.interface.interfaces.IAdapterRegistry`: -.. autointerface:: zope.interface.adapter.IAdapterRegistry +.. autointerface:: zope.interface.interfaces.IAdapterRegistry :members: :member-order: bysource diff --git a/docs/conf.py b/docs/conf.py index 59dac0d..dfbf09e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -262,7 +262,11 @@ texinfo_documents = [ # Example configuration for intersphinx: refer to the Python standard library. -intersphinx_mapping = {'https://docs.python.org/': None} +intersphinx_mapping = { + 'https://docs.python.org/': None, + 'https://persistent.readthedocs.io/en/latest/': None, + 'https://btrees.readthedocs.io/en/latest/': None, +} # Sphinx 1.8+ prefers this to `autodoc_default_flags`. It's documented that # either True or None mean the same thing as just setting the flag, but |
