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