app: Update module docstring
parent
44a28fda68
commit
83971013d0
|
@ -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");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
@ -13,12 +13,17 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
'''Module milla.app
|
'''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
|
:Created: Mar 26, 2011
|
||||||
:Author: dustin
|
:Author: dustin
|
||||||
:Updated: $Date$
|
|
||||||
:Updater: $Author$
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
from milla import util
|
from milla import util
|
||||||
|
|
Loading…
Reference in New Issue