From 52098e1e4fc4d9c962e9ecb09dfbbcc6ac80a4d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Neuha=CC=88user?= Date: Thu, 2 Jan 2014 19:21:07 +0100 Subject: [PATCH] Happy New Year 2014 --- examples/flaskr/flaskr.py | 2 +- examples/flaskr/flaskr_tests.py | 2 +- examples/jqueryexample/jqueryexample.py | 2 +- examples/minitwit/minitwit.py | 2 +- examples/minitwit/minitwit_tests.py | 2 +- flask/__init__.py | 2 +- flask/_compat.py | 2 +- flask/app.py | 2 +- flask/blueprints.py | 2 +- flask/config.py | 2 +- flask/ctx.py | 2 +- flask/debughelpers.py | 2 +- flask/ext/__init__.py | 2 +- flask/exthook.py | 2 +- flask/globals.py | 2 +- flask/helpers.py | 2 +- flask/json.py | 2 +- flask/logging.py | 2 +- flask/module.py | 2 +- flask/sessions.py | 2 +- flask/signals.py | 2 +- flask/templating.py | 2 +- flask/testing.py | 2 +- flask/testsuite/__init__.py | 2 +- flask/testsuite/appctx.py | 2 +- flask/testsuite/basic.py | 2 +- flask/testsuite/blueprints.py | 2 +- flask/testsuite/config.py | 2 +- flask/testsuite/deprecations.py | 2 +- flask/testsuite/examples.py | 2 +- flask/testsuite/ext.py | 2 +- flask/testsuite/helpers.py | 2 +- flask/testsuite/regression.py | 2 +- flask/testsuite/reqctx.py | 2 +- flask/testsuite/signals.py | 2 +- flask/testsuite/subclassing.py | 2 +- flask/testsuite/templating.py | 2 +- flask/testsuite/testing.py | 2 +- flask/testsuite/views.py | 2 +- flask/views.py | 2 +- flask/wrappers.py | 2 +- scripts/flask-07-upgrade.py | 2 +- scripts/flaskext_compat.py | 2 +- scripts/flaskext_test.py | 2 +- scripts/make-release.py | 2 +- 45 files changed, 45 insertions(+), 45 deletions(-) diff --git a/examples/flaskr/flaskr.py b/examples/flaskr/flaskr.py index b193e94e46..faf1f5435b 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 dd16c038ca..ab08a60a23 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 0e8caf3e9f..08164119bd 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 baa204f93f..913d452230 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 c213466d3c..9b02762983 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 c60f82baa8..2ab3356c12 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 c34288451f..e69dac451c 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 addc40b46f..a4bcd66ea9 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 4575ec9b97..ef536ddc33 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 155afa2fbf..07d6fbc8c2 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 363e7f6e3b..7f99dfb4fa 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 2f8510f976..a96c13eadf 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 f29958a19f..315d7e5ecf 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 d0d814c6d0..0422817fea 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 67d41f5c10..fecbfc101a 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 e59f7d3c99..c71da85b05 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 45ba324006..49de2320d4 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 9ad641d1d4..5022a696a0 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 1c4f466c5a..336d687b2a 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 3246eb831b..abb477a1fb 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 7bd0385a34..ac71b8ce4a 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 63adb092e9..c34af6525f 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 1dc383af6a..8f28f77ba8 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 7fe6148446..695243c612 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 6c3d0595e0..55f7dcba4c 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 51fd46f2dc..1858ca5c88 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 72cf5182f7..8a0e5a79c1 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 13e14d8565..cdc6273ff7 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 563718228e..2d77925eb1 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 2d30958f66..1ea3e6cc5a 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 5cc3df4389..3c75540e44 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 636f67faa6..518d9384d3 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 e516dc0fd6..ad06aa59c3 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 38016b5e05..c8954824ff 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 45ca45d9bf..93f1c7c8d0 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 6b81db983d..24c823ae20 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 b2870dea19..0f0ad5b475 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 a618f0b8fd..3aa9e68898 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 4eee015b4f..bd572b2402 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 b3b61b5202..607cb7a449 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 1a17824ae0..e77b9c201b 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 e1017e697c..18395b509f 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 050fd7e0f3..357e88ad5f 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 5b0d9d2214..bbffc3a222 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 31f4fa9ef2..d6375820e6 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