Basic automodule directives for the modules in zope.interface.common.

This commit is contained in:
Jason Madden 2018-07-19 07:08:51 -05:00
parent 39ca0c5dab
commit 153832496c
No known key found for this signature in database
GPG Key ID: 349F84431A08B99E
2 changed files with 31 additions and 0 deletions

View File

@ -1102,3 +1102,31 @@ The component registry's API is defined by
.. autointerface:: zope.interface.interfaces.IComponentRegistry
:members:
:member-order: bysource
Python Standard Library Interfaces
==================================
The ``zope.interface.common`` package provides interfaces for objects
distributed as part of the Python standard library. Importing these
modules has the effect of making the standard library objects
implement the correct interface.
``zope.interface.common.interfaces``
------------------------------------
.. automodule:: zope.interface.common.interfaces
``zope.interface.common.idatetime``
-----------------------------------
.. automodule:: zope.interface.common.idatetime
``zope.interface.common.mapping``
---------------------------------
.. automodule:: zope.interface.common.mapping
``zope.interface.common.sequence``
----------------------------------
.. automodule:: zope.interface.common.sequence

View File

@ -261,3 +261,6 @@ texinfo_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}
autodoc_default_flags = ['members', 'show-inheritance']
autoclass_content = 'both'