# HG changeset patch # User Pawel Solyga # Date 1238778574 0 # Node ID 1855c783934f865f8ca66111bb600f4c7b4152a8 # Parent edac5ddc8ef04db19921088810fe2573f72ad357 Add missing docstrings to main.py and settings.py. Patch by: Pawel Solyga Reviewed by: to-be-reviewed diff -r edac5ddc8ef0 -r 1855c783934f app/main.py --- a/app/main.py Fri Apr 03 17:06:27 2009 +0000 +++ b/app/main.py Fri Apr 03 17:09:34 2009 +0000 @@ -14,6 +14,9 @@ # See the License for the specific language governing permissions and # limitations under the License. +"""Main Melange module with profiling support. +""" + __authors__ = [ # alphabetical order by last name, please '"Augie Fackler" ', @@ -52,6 +55,8 @@ # Log errors. def log_exception(*args, **kwds): + """Function used for logging exceptions. + """ logging.exception('Exception in request:') # Log all exceptions detected by Django. diff -r edac5ddc8ef0 -r 1855c783934f app/settings.py --- a/app/settings.py Fri Apr 03 17:06:27 2009 +0000 +++ b/app/settings.py Fri Apr 03 17:09:34 2009 +0000 @@ -12,6 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. +"""Module containing Melange Django settings. +""" + __authors__ = [ '"Augie Fackler" ', '"Pawel Solyga" ',