diff -r 07fe5bb08599 -r c062ab4db6cd src/pyams_utils/decorator.py --- a/src/pyams_utils/decorator.py Tue Jun 18 16:53:34 2019 +0200 +++ b/src/pyams_utils/decorator.py Wed Jun 26 10:39:34 2019 +0200 @@ -10,17 +10,17 @@ # FOR A PARTICULAR PURPOSE. # +"""PyAMS_utils.decorator module + +This module only provides a single decorator, which can be used to mark a function as +deprecated. +""" + __docformat__ = 'restructuredtext' - -# import standard library import functools import warnings -# import interfaces - -# import packages - def deprecated(*msg): """This is a decorator which can be used to mark functions as deprecated.