Add docstrings from gvaldap settings

This commit is contained in:
Jan Dittberner 2016-01-31 23:22:07 +01:00
parent 3d95a9f61a
commit 6c606034b3
4 changed files with 16 additions and 2 deletions

View file

@ -0,0 +1,3 @@
"""
This module contains settings for various environments.
"""

View file

@ -1,6 +1,9 @@
# -*- python -*-
# pymode:lint_ignore=W0401,E501
"""Development settings and globals."""
"""
Development settings and globals based on :py:mod:`gvaldap.settings.base`.
"""
from __future__ import absolute_import

View file

@ -1,6 +1,9 @@
# -*- python -*-
# pymode:lint_ignore=W0401,E501
"""Production settings and globals."""
"""
Production settings and globals based on :py:mod:`gvaldap.settings.base`.
"""
from __future__ import absolute_import

View file

@ -1,3 +1,8 @@
# pymode:lint_ignore=W0401
"""
Test settings based on :py:mod:`gvaldap.settings.base`.
"""
from __future__ import absolute_import
# use import * to import all settings from base