Browse Source

Late but 2010 -> 2011 in some files

pull/309/merge
Armin Ronacher 14 years ago
parent
commit
ee8417dac8
  1. 2
      flask/__init__.py
  2. 2
      flask/app.py
  3. 2
      flask/config.py
  4. 2
      flask/ctx.py
  5. 2
      flask/globals.py
  6. 2
      flask/helpers.py
  7. 2
      flask/logging.py
  8. 2
      flask/module.py
  9. 2
      flask/session.py
  10. 2
      flask/sessions.py
  11. 2
      flask/signals.py
  12. 2
      flask/templating.py
  13. 2
      flask/testing.py
  14. 2
      flask/wrappers.py

2
flask/__init__.py

@ -6,7 +6,7 @@
A microframework based on Werkzeug. It's extensively documented A microframework based on Werkzeug. It's extensively documented
and follows best practice patterns. and follows best practice patterns.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/app.py

@ -5,7 +5,7 @@
This module implements the central WSGI application object. This module implements the central WSGI application object.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/config.py

@ -5,7 +5,7 @@
Implements the configuration related objects. Implements the configuration related objects.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/ctx.py

@ -5,7 +5,7 @@
Implements the objects required to keep the context. Implements the objects required to keep the context.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/globals.py

@ -6,7 +6,7 @@
Defines all the global objects that are proxies to the current Defines all the global objects that are proxies to the current
active context. active context.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/helpers.py

@ -5,7 +5,7 @@
Implements various helpers. Implements various helpers.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/logging.py

@ -5,7 +5,7 @@
Implements the logging support for Flask. Implements the logging support for Flask.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/module.py

@ -5,7 +5,7 @@
Implements a class that represents module blueprints. Implements a class that represents module blueprints.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/session.py

@ -6,7 +6,7 @@
This module used to flask with the session global so we moved it This module used to flask with the session global so we moved it
over to flask.sessions over to flask.sessions
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/sessions.py

@ -6,7 +6,7 @@
Implements cookie based sessions based on Werkzeug's secure cookie Implements cookie based sessions based on Werkzeug's secure cookie
system. system.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/signals.py

@ -6,7 +6,7 @@
Implements signals based on blinker if available, otherwise Implements signals based on blinker if available, otherwise
falls silently back to a noop falls silently back to a noop
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
signals_available = False signals_available = False

2
flask/templating.py

@ -5,7 +5,7 @@
Implements the bridge to Jinja2. Implements the bridge to Jinja2.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """
import posixpath import posixpath

2
flask/testing.py

@ -6,7 +6,7 @@
Implements test support helpers. This module is lazily imported Implements test support helpers. This module is lazily imported
and usually not used in production environments. and usually not used in production environments.
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

2
flask/wrappers.py

@ -5,7 +5,7 @@
Implements the WSGI wrappers (request and response). Implements the WSGI wrappers (request and response).
:copyright: (c) 2010 by Armin Ronacher. :copyright: (c) 2011 by Armin Ronacher.
:license: BSD, see LICENSE for more details. :license: BSD, see LICENSE for more details.
""" """

Loading…
Cancel
Save