src/pyams_utils/decorator.py
changeset 380 c062ab4db6cd
parent 292 b338586588ad
child 408 cf2304af0fab
--- 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.