Skip to content

Commit b6925aa

Browse files
committed
Remove module titles in docstrings
1 parent 6f542cc commit b6925aa

File tree

21 files changed

+17
-188
lines changed

21 files changed

+17
-188
lines changed

sphinxcontrib/websupport/__init__.py

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,4 @@
1-
# -*- coding: utf-8 -*-
2-
"""
3-
sphinxcontrib.websupport
4-
~~~~~~~~~~~~~~~~~~~~~~~~
5-
6-
A Python API to easily integrate Sphinx documentation into Web
7-
applications.
8-
9-
:copyright: Copyright 2007-2018 by the Sphinx team, see README.
10-
:license: BSD, see LICENSE for details.
11-
"""
1+
"""A Python API to easily integrate Sphinx documentation into Web applications."""
122
from os import path
133

144

sphinxcontrib/websupport/builder.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
# -*- coding: utf-8 -*-
2-
"""
3-
sphinx.builders.websupport
4-
~~~~~~~~~~~~~~~~~~~~~~~~~~
5-
6-
Builder for the web support package.
7-
8-
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
9-
:license: BSD, see LICENSE for details.
10-
"""
1+
"""Builder for the web support extension."""
112

123
from __future__ import annotations
134

sphinxcontrib/websupport/core.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
# -*- coding: utf-8 -*-
2-
"""
3-
sphinxcontrib.websupport.core
4-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5-
6-
Base Module for web support functions.
7-
8-
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
9-
:license: BSD, see LICENSE for details.
10-
"""
1+
"""Base Module for web support functions."""
112

123
from __future__ import annotations
134

sphinxcontrib/websupport/errors.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
# -*- coding: utf-8 -*-
2-
"""
3-
sphinxcontrib.websupport.errors
4-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5-
6-
Contains Error classes for the web support package.
7-
8-
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
9-
:license: BSD, see LICENSE for details.
10-
"""
1+
"""Contains Error classes for the web support package."""
112

123

134
class DocumentNotFoundError(Exception):

sphinxcontrib/websupport/search/__init__.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
# -*- coding: utf-8 -*-
2-
"""
3-
sphinxcontrib.websupport.search
4-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5-
6-
Server side search support for the web support package.
7-
8-
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
9-
:license: BSD, see LICENSE for details.
10-
"""
1+
"""Server side search support for the web support package."""
112

123
import re
134

sphinxcontrib/websupport/search/nullsearch.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
# -*- coding: utf-8 -*-
2-
"""
3-
sphinxcontrib.websupport.search.nullsearch
4-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5-
6-
The default search adapter, does nothing.
7-
8-
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
9-
:license: BSD, see LICENSE for details.
10-
"""
1+
"""The default search adapter, does nothing."""
112

123
from sphinxcontrib.websupport.search import BaseSearch
134
from sphinxcontrib.websupport.errors import NullSearchException

sphinxcontrib/websupport/search/whooshsearch.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
# -*- coding: utf-8 -*-
2-
"""
3-
sphinxcontrib.websupport.search.whooshsearch
4-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5-
6-
Whoosh search adapter.
7-
8-
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
9-
:license: BSD, see LICENSE for details.
10-
"""
1+
"""Whoosh search adapter."""
112

123
from whoosh import index
134
from whoosh.fields import Schema, ID, TEXT

sphinxcontrib/websupport/search/xapiansearch.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
# -*- coding: utf-8 -*-
2-
"""
3-
sphinxcontrib.websupport.search.xapiansearch
4-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5-
6-
Xapian search adapter.
7-
8-
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
9-
:license: BSD, see LICENSE for details.
10-
"""
1+
"""Xapian search adapter."""
112

123
import xapian
134

sphinxcontrib/websupport/storage/__init__.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
# -*- coding: utf-8 -*-
2-
"""
3-
sphinxcontrib.websupport.storage
4-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5-
6-
Storage for the websupport package.
7-
8-
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
9-
:license: BSD, see LICENSE for details.
10-
"""
1+
"""Storage for the websupport package."""
112

123

134
class StorageBackend(object):

sphinxcontrib/websupport/storage/differ.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
# -*- coding: utf-8 -*-
2-
"""
3-
sphinxcontrib.websupport.storage.differ
4-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5-
6-
A differ for creating an HTML representations of proposal diffs
7-
8-
:copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
9-
:license: BSD, see LICENSE for details.
10-
"""
1+
"""A differ for creating an HTML representations of proposal diffs."""
112

123
import html
134
import re

0 commit comments

Comments
 (0)