Added missing module docstrings

This commit is contained in:
Daniel Neuhäuser 2010-07-25 20:03:28 +02:00
parent 0672a8e379
commit 6a4ec66967
3 changed files with 33 additions and 1 deletions

View File

@ -1,3 +1,13 @@
# -*- coding: utf-8 -*-
"""
sphinx.websupport.comments
~~~~~~~~~~~~~~~~~~~~~~~~~~
Comments for the websupport package.
:copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
class StorageBackend(object):
def pre_build(self):

View File

@ -1,3 +1,15 @@
# -*- coding: utf-8 -*-
"""
sphinx.websupport.comments.db
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SQLAlchemy table and mapper definitions used by the
:class:`sphinx.websupport.comments.SQLAlchemyStorage`.
:copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
from datetime import datetime
from sqlalchemy import Column, Integer, Text, String, Boolean, ForeignKey,\
@ -152,4 +164,3 @@ class ProposalVote(Base):
self.value = value
self.user_id = user_id
self.proposal_id = proposal_id

View File

@ -1,3 +1,14 @@
# -*- coding: utf-8 -*-
"""
sphinx.websupport.comments.sqlalchemystorage
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
A SQLAlchemy storage backend.
:copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
from datetime import datetime
from sphinx.websupport.comments import StorageBackend