diff options
author | Daniel Neuhäuser <ich@danielneuhaeuser.de> | 2010-07-25 20:03:28 +0200 |
---|---|---|
committer | Daniel Neuhäuser <ich@danielneuhaeuser.de> | 2010-07-25 20:03:28 +0200 |
commit | 6a4ec66967de0f25e03a73d43e4c57b7295f561c (patch) | |
tree | ee2e95e8c7c6a31ed456b3dadcbddf1b7f129cdd /sphinx/websupport/comments/sqlalchemystorage.py | |
parent | 0672a8e379c711a63348af9b57a6a4a92938cb95 (diff) | |
download | sphinx-git-6a4ec66967de0f25e03a73d43e4c57b7295f561c.tar.gz |
Added missing module docstrings
Diffstat (limited to 'sphinx/websupport/comments/sqlalchemystorage.py')
-rw-r--r-- | sphinx/websupport/comments/sqlalchemystorage.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sphinx/websupport/comments/sqlalchemystorage.py b/sphinx/websupport/comments/sqlalchemystorage.py index 8ee117502..312663c81 100644 --- a/sphinx/websupport/comments/sqlalchemystorage.py +++ b/sphinx/websupport/comments/sqlalchemystorage.py @@ -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 |