diff --git a/examples/flaskr/flaskr.py b/examples/flaskr/flaskr.py index b193e94e..faf1f543 100644 --- a/examples/flaskr/flaskr.py +++ b/examples/flaskr/flaskr.py @@ -6,7 +6,7 @@ A microblog example application written as Flask tutorial with Flask and sqlite3. - :copyright: (c) 2010 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/examples/flaskr/flaskr_tests.py b/examples/flaskr/flaskr_tests.py index dd16c038..ab08a60a 100644 --- a/examples/flaskr/flaskr_tests.py +++ b/examples/flaskr/flaskr_tests.py @@ -5,7 +5,7 @@ Tests the Flaskr application. - :copyright: (c) 2010 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import os diff --git a/examples/jqueryexample/jqueryexample.py b/examples/jqueryexample/jqueryexample.py index 0e8caf3e..08164119 100644 --- a/examples/jqueryexample/jqueryexample.py +++ b/examples/jqueryexample/jqueryexample.py @@ -5,7 +5,7 @@ A simple application that shows how Flask and jQuery get along. - :copyright: (c) 2010 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ from flask import Flask, jsonify, render_template, request diff --git a/examples/minitwit/minitwit.py b/examples/minitwit/minitwit.py index baa204f9..913d4522 100644 --- a/examples/minitwit/minitwit.py +++ b/examples/minitwit/minitwit.py @@ -5,7 +5,7 @@ A microblogging application written with Flask and sqlite3. - :copyright: (c) 2010 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/examples/minitwit/minitwit_tests.py b/examples/minitwit/minitwit_tests.py index c213466d..9b027629 100644 --- a/examples/minitwit/minitwit_tests.py +++ b/examples/minitwit/minitwit_tests.py @@ -5,7 +5,7 @@ Tests the MiniTwit application. - :copyright: (c) 2010 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import os diff --git a/flask/__init__.py b/flask/__init__.py index c60f82ba..2ab3356c 100644 --- a/flask/__init__.py +++ b/flask/__init__.py @@ -6,7 +6,7 @@ A microframework based on Werkzeug. It's extensively documented and follows best practice patterns. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/_compat.py b/flask/_compat.py index c3428845..e69dac45 100644 --- a/flask/_compat.py +++ b/flask/_compat.py @@ -7,7 +7,7 @@ version of six so we don't have to depend on a specific version of it. - :copyright: (c) 2013 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import sys diff --git a/flask/app.py b/flask/app.py index addc40b4..a4bcd66e 100644 --- a/flask/app.py +++ b/flask/app.py @@ -5,7 +5,7 @@ This module implements the central WSGI application object. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/blueprints.py b/flask/blueprints.py index 4575ec9b..ef536ddc 100644 --- a/flask/blueprints.py +++ b/flask/blueprints.py @@ -6,7 +6,7 @@ Blueprints are the recommended way to implement larger or more pluggable applications in Flask 0.7 and later. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ from functools import update_wrapper diff --git a/flask/config.py b/flask/config.py index 155afa2f..07d6fbc8 100644 --- a/flask/config.py +++ b/flask/config.py @@ -5,7 +5,7 @@ Implements the configuration related objects. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/ctx.py b/flask/ctx.py index 363e7f6e..7f99dfb4 100644 --- a/flask/ctx.py +++ b/flask/ctx.py @@ -5,7 +5,7 @@ Implements the objects required to keep the context. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/debughelpers.py b/flask/debughelpers.py index 2f8510f9..a96c13ea 100644 --- a/flask/debughelpers.py +++ b/flask/debughelpers.py @@ -5,7 +5,7 @@ Various helpers to make the development experience better. - :copyright: (c) 2011 by Armin Ronacher. +1 :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ from ._compat import implements_to_string diff --git a/flask/ext/__init__.py b/flask/ext/__init__.py index f29958a1..315d7e5e 100644 --- a/flask/ext/__init__.py +++ b/flask/ext/__init__.py @@ -14,7 +14,7 @@ We're switching from namespace packages because it was just too painful for everybody involved. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/exthook.py b/flask/exthook.py index d0d814c6..0422817f 100644 --- a/flask/exthook.py +++ b/flask/exthook.py @@ -16,7 +16,7 @@ This is used by `flask.ext`. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import sys diff --git a/flask/globals.py b/flask/globals.py index 67d41f5c..fecbfc10 100644 --- a/flask/globals.py +++ b/flask/globals.py @@ -6,7 +6,7 @@ Defines all the global objects that are proxies to the current active context. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/helpers.py b/flask/helpers.py index e59f7d3c..c71da85b 100644 --- a/flask/helpers.py +++ b/flask/helpers.py @@ -5,7 +5,7 @@ Implements various helpers. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/json.py b/flask/json.py index 45ba3240..49de2320 100644 --- a/flask/json.py +++ b/flask/json.py @@ -5,7 +5,7 @@ Implementation helpers for the JSON support in Flask. - :copyright: (c) 2012 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import io diff --git a/flask/logging.py b/flask/logging.py index 9ad641d1..5022a696 100644 --- a/flask/logging.py +++ b/flask/logging.py @@ -5,7 +5,7 @@ Implements the logging support for Flask. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/module.py b/flask/module.py index 1c4f466c..336d687b 100644 --- a/flask/module.py +++ b/flask/module.py @@ -5,7 +5,7 @@ Implements a class that represents module blueprints. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/sessions.py b/flask/sessions.py index 3246eb83..abb477a1 100644 --- a/flask/sessions.py +++ b/flask/sessions.py @@ -5,7 +5,7 @@ Implements cookie based sessions based on itsdangerous. - :copyright: (c) 2012 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/signals.py b/flask/signals.py index 7bd0385a..ac71b8ce 100644 --- a/flask/signals.py +++ b/flask/signals.py @@ -6,7 +6,7 @@ Implements signals based on blinker if available, otherwise falls silently back to a noop - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ signals_available = False diff --git a/flask/templating.py b/flask/templating.py index 63adb092..c34af652 100644 --- a/flask/templating.py +++ b/flask/templating.py @@ -5,7 +5,7 @@ Implements the bridge to Jinja2. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import posixpath diff --git a/flask/testing.py b/flask/testing.py index 1dc383af..8f28f77b 100644 --- a/flask/testing.py +++ b/flask/testing.py @@ -6,7 +6,7 @@ Implements test support helpers. This module is lazily imported and usually not used in production environments. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/__init__.py b/flask/testsuite/__init__.py index 7fe61484..695243c6 100644 --- a/flask/testsuite/__init__.py +++ b/flask/testsuite/__init__.py @@ -6,7 +6,7 @@ Tests Flask itself. The majority of Flask is already tested as part of Werkzeug. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/appctx.py b/flask/testsuite/appctx.py index 6c3d0595..55f7dcba 100644 --- a/flask/testsuite/appctx.py +++ b/flask/testsuite/appctx.py @@ -5,7 +5,7 @@ Tests the application context. - :copyright: (c) 2012 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/basic.py b/flask/testsuite/basic.py index 51fd46f2..1858ca5c 100644 --- a/flask/testsuite/basic.py +++ b/flask/testsuite/basic.py @@ -5,7 +5,7 @@ The basic functionality. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/blueprints.py b/flask/testsuite/blueprints.py index 72cf5182..8a0e5a79 100644 --- a/flask/testsuite/blueprints.py +++ b/flask/testsuite/blueprints.py @@ -5,7 +5,7 @@ Blueprints (and currently modules) - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/config.py b/flask/testsuite/config.py index 13e14d85..cdc6273f 100644 --- a/flask/testsuite/config.py +++ b/flask/testsuite/config.py @@ -5,7 +5,7 @@ Configuration and instances. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/deprecations.py b/flask/testsuite/deprecations.py index 56371822..2d77925e 100644 --- a/flask/testsuite/deprecations.py +++ b/flask/testsuite/deprecations.py @@ -5,7 +5,7 @@ Tests deprecation support. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/examples.py b/flask/testsuite/examples.py index 2d30958f..1ea3e6cc 100644 --- a/flask/testsuite/examples.py +++ b/flask/testsuite/examples.py @@ -5,7 +5,7 @@ Tests the examples. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import os diff --git a/flask/testsuite/ext.py b/flask/testsuite/ext.py index 5cc3df43..3c75540e 100644 --- a/flask/testsuite/ext.py +++ b/flask/testsuite/ext.py @@ -5,7 +5,7 @@ Tests the extension import thing. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/helpers.py b/flask/testsuite/helpers.py index 636f67fa..518d9384 100644 --- a/flask/testsuite/helpers.py +++ b/flask/testsuite/helpers.py @@ -5,7 +5,7 @@ Various helpers. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/regression.py b/flask/testsuite/regression.py index e516dc0f..ad06aa59 100644 --- a/flask/testsuite/regression.py +++ b/flask/testsuite/regression.py @@ -5,7 +5,7 @@ Tests regressions. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/reqctx.py b/flask/testsuite/reqctx.py index 38016b5e..c8954824 100644 --- a/flask/testsuite/reqctx.py +++ b/flask/testsuite/reqctx.py @@ -5,7 +5,7 @@ Tests the request context. - :copyright: (c) 2012 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/signals.py b/flask/testsuite/signals.py index 45ca45d9..93f1c7c8 100644 --- a/flask/testsuite/signals.py +++ b/flask/testsuite/signals.py @@ -5,7 +5,7 @@ Signalling. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/subclassing.py b/flask/testsuite/subclassing.py index 6b81db98..24c823ae 100644 --- a/flask/testsuite/subclassing.py +++ b/flask/testsuite/subclassing.py @@ -6,7 +6,7 @@ Test that certain behavior of flask can be customized by subclasses. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import flask diff --git a/flask/testsuite/templating.py b/flask/testsuite/templating.py index b2870dea..0f0ad5b4 100644 --- a/flask/testsuite/templating.py +++ b/flask/testsuite/templating.py @@ -5,7 +5,7 @@ Template functionality - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/testing.py b/flask/testsuite/testing.py index a618f0b8..3aa9e688 100644 --- a/flask/testsuite/testing.py +++ b/flask/testsuite/testing.py @@ -5,7 +5,7 @@ Test client and more. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/testsuite/views.py b/flask/testsuite/views.py index 4eee015b..bd572b24 100644 --- a/flask/testsuite/views.py +++ b/flask/testsuite/views.py @@ -5,7 +5,7 @@ Pluggable views. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/flask/views.py b/flask/views.py index b3b61b52..607cb7a4 100644 --- a/flask/views.py +++ b/flask/views.py @@ -5,7 +5,7 @@ This module provides class-based views inspired by the ones in Django. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ from .globals import request diff --git a/flask/wrappers.py b/flask/wrappers.py index 1a17824a..e77b9c20 100644 --- a/flask/wrappers.py +++ b/flask/wrappers.py @@ -5,7 +5,7 @@ Implements the WSGI wrappers (request and response). - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ diff --git a/scripts/flask-07-upgrade.py b/scripts/flask-07-upgrade.py index e1017e69..18395b50 100644 --- a/scripts/flask-07-upgrade.py +++ b/scripts/flask-07-upgrade.py @@ -16,7 +16,7 @@ the most common patterns at least. The diff it generates should be hand reviewed and not applied blindly without making backups. - :copyright: (c) Copyright 2011 by Armin Ronacher. + :copyright: (c) Copyright 2014 by Armin Ronacher. :license: see LICENSE for more details. """ import re diff --git a/scripts/flaskext_compat.py b/scripts/flaskext_compat.py index 050fd7e0..357e88ad 100644 --- a/scripts/flaskext_compat.py +++ b/scripts/flaskext_compat.py @@ -12,7 +12,7 @@ flaskext_compat.activate() from flask.ext import foo - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import sys diff --git a/scripts/flaskext_test.py b/scripts/flaskext_test.py index 5b0d9d22..bbffc3a2 100644 --- a/scripts/flaskext_test.py +++ b/scripts/flaskext_test.py @@ -5,7 +5,7 @@ Tests the Flask extensions. - :copyright: (c) 2010 by Ali Afshar. + :copyright: (c) 2014 by Ali Afshar. :license: BSD, see LICENSE for more details. """ diff --git a/scripts/make-release.py b/scripts/make-release.py index 31f4fa9e..d6375820 100644 --- a/scripts/make-release.py +++ b/scripts/make-release.py @@ -7,7 +7,7 @@ Helper script that performs a release. Does pretty much everything automatically for us. - :copyright: (c) 2011 by Armin Ronacher. + :copyright: (c) 2014 by Armin Ronacher. :license: BSD, see LICENSE for more details. """ import sys