Add docstrings from gvaldap settings
This commit is contained in:
parent
3d95a9f61a
commit
6c606034b3
4 changed files with 16 additions and 2 deletions
|
@ -0,0 +1,3 @@
|
||||||
|
"""
|
||||||
|
This module contains settings for various environments.
|
||||||
|
"""
|
|
@ -1,6 +1,9 @@
|
||||||
# -*- python -*-
|
# -*- python -*-
|
||||||
# pymode:lint_ignore=W0401,E501
|
# 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
|
from __future__ import absolute_import
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,9 @@
|
||||||
# -*- python -*-
|
# -*- python -*-
|
||||||
# pymode:lint_ignore=W0401,E501
|
# 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
|
from __future__ import absolute_import
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
# pymode:lint_ignore=W0401
|
||||||
|
"""
|
||||||
|
Test settings based on :py:mod:`gvaldap.settings.base`.
|
||||||
|
|
||||||
|
"""
|
||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
|
|
||||||
# use import * to import all settings from base
|
# use import * to import all settings from base
|
||||||
|
|
Loading…
Reference in a new issue