diff options
author | W. Trevor King <wking@tremily.us> | 2012-10-26 08:13:13 -0400 |
---|---|---|
committer | W. Trevor King <wking@tremily.us> | 2012-10-26 08:16:38 -0400 |
commit | d9b9c4fdb13a0e0dc41184ea8d907bd5fa156e0d (patch) | |
tree | 4fa765a5b72b1a4c1c083e80706128620a3fc9f8 /libbe/__init__.py | |
parent | 26aadf775cbafd14e98870f818aae078181080d8 (diff) | |
download | bugseverywhere-d9b9c4fdb13a0e0dc41184ea8d907bd5fa156e0d.tar.gz |
doc: update :mod: to :py:mod: for modern Sphinx.
Diffstat (limited to 'libbe/__init__.py')
-rw-r--r-- | libbe/__init__.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libbe/__init__.py b/libbe/__init__.py index a154007..efd744a 100644 --- a/libbe/__init__.py +++ b/libbe/__init__.py @@ -24,17 +24,17 @@ To facilitate faster loading, submodules are not imported by default. The available submodules are: -* :mod:`libbe.bugdir` -* :mod:`libbe.bug` -* :mod:`libbe.comment` -* :mod:`libbe.command` -* :mod:`libbe.diff` -* :mod:`libbe.error` -* :mod:`libbe.storage` -* :mod:`libbe.ui` -* :mod:`libbe.util` -* :mod:`libbe.version` -* :mod:`libbe._version` +* :py:mod:`libbe.bugdir` +* :py:mod:`libbe.bug` +* :py:mod:`libbe.comment` +* :py:mod:`libbe.command` +* :py:mod:`libbe.diff` +* :py:mod:`libbe.error` +* :py:mod:`libbe.storage` +* :py:mod:`libbe.ui` +* :py:mod:`libbe.util` +* :py:mod:`libbe.version` +* :py:mod:`libbe._version` """ TESTING = False @@ -42,7 +42,7 @@ TESTING = False To reduce module load time, test suite generation is turned of by default. If you *do* want to generate the test suites, set -``TESTING=True`` before loading any :mod:`libbe` submodules. +``TESTING=True`` before loading any :py:mod:`libbe` submodules. Examples -------- |