From 83971013d07da7447df71312cb18add6492da868 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 10 Jul 2016 19:54:14 -0500 Subject: [PATCH] app: Update module docstring --- src/milla/app.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/src/milla/app.py b/src/milla/app.py index 9334de1..05b371b 100644 --- a/src/milla/app.py +++ b/src/milla/app.py @@ -1,4 +1,4 @@ -# Copyright 2011, 2012, 2014, 2015 Dustin C. Hatch +# Copyright 2011, 2012, 2014-2016 Dustin C. Hatch # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -13,12 +13,17 @@ # limitations under the License. '''Module milla.app -Please give me a docstring! +The :py:class:`BaseApplication` class is the core of the Milla +framework. This class implements a WSGI application that dispatches +requests to callables based on their URL-path. + +Most applications can use :py:class:`Application` directly, without +creating a sub-class. For advanced use, applications can define a +sub-class of :py:class:`BaseApplication` and customize the behavior of +the framework. :Created: Mar 26, 2011 :Author: dustin -:Updated: $Date$ -:Updater: $Author$ ''' from milla import util