]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- happy new year
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 29 Jan 2016 16:24:35 +0000 (11:24 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 29 Jan 2016 16:25:37 +0000 (11:25 -0500)
(cherry picked from commit 859379e2fcc4506d036700ba1eca4c0ae526a8ee)

172 files changed:
LICENSE
doc/build/conf.py
doc/build/copyright.rst
lib/sqlalchemy/__init__.py
lib/sqlalchemy/cextension/processors.c
lib/sqlalchemy/cextension/resultproxy.c
lib/sqlalchemy/cextension/utils.c
lib/sqlalchemy/connectors/__init__.py
lib/sqlalchemy/connectors/mxodbc.py
lib/sqlalchemy/connectors/pyodbc.py
lib/sqlalchemy/connectors/zxJDBC.py
lib/sqlalchemy/databases/__init__.py
lib/sqlalchemy/dialects/__init__.py
lib/sqlalchemy/dialects/firebird/__init__.py
lib/sqlalchemy/dialects/firebird/base.py
lib/sqlalchemy/dialects/firebird/fdb.py
lib/sqlalchemy/dialects/firebird/kinterbasdb.py
lib/sqlalchemy/dialects/mssql/__init__.py
lib/sqlalchemy/dialects/mssql/adodbapi.py
lib/sqlalchemy/dialects/mssql/base.py
lib/sqlalchemy/dialects/mssql/information_schema.py
lib/sqlalchemy/dialects/mssql/mxodbc.py
lib/sqlalchemy/dialects/mssql/pymssql.py
lib/sqlalchemy/dialects/mssql/pyodbc.py
lib/sqlalchemy/dialects/mssql/zxjdbc.py
lib/sqlalchemy/dialects/mysql/__init__.py
lib/sqlalchemy/dialects/mysql/base.py
lib/sqlalchemy/dialects/mysql/cymysql.py
lib/sqlalchemy/dialects/mysql/gaerdbms.py
lib/sqlalchemy/dialects/mysql/mysqlconnector.py
lib/sqlalchemy/dialects/mysql/mysqldb.py
lib/sqlalchemy/dialects/mysql/oursql.py
lib/sqlalchemy/dialects/mysql/pymysql.py
lib/sqlalchemy/dialects/mysql/pyodbc.py
lib/sqlalchemy/dialects/mysql/zxjdbc.py
lib/sqlalchemy/dialects/oracle/__init__.py
lib/sqlalchemy/dialects/oracle/base.py
lib/sqlalchemy/dialects/oracle/cx_oracle.py
lib/sqlalchemy/dialects/oracle/zxjdbc.py
lib/sqlalchemy/dialects/postgres.py
lib/sqlalchemy/dialects/postgresql/__init__.py
lib/sqlalchemy/dialects/postgresql/base.py
lib/sqlalchemy/dialects/postgresql/constraints.py
lib/sqlalchemy/dialects/postgresql/hstore.py
lib/sqlalchemy/dialects/postgresql/json.py
lib/sqlalchemy/dialects/postgresql/pg8000.py
lib/sqlalchemy/dialects/postgresql/psycopg2.py
lib/sqlalchemy/dialects/postgresql/psycopg2cffi.py
lib/sqlalchemy/dialects/postgresql/pypostgresql.py
lib/sqlalchemy/dialects/postgresql/ranges.py
lib/sqlalchemy/dialects/postgresql/zxjdbc.py
lib/sqlalchemy/dialects/sqlite/__init__.py
lib/sqlalchemy/dialects/sqlite/base.py
lib/sqlalchemy/dialects/sqlite/pysqlcipher.py
lib/sqlalchemy/dialects/sqlite/pysqlite.py
lib/sqlalchemy/dialects/sybase/__init__.py
lib/sqlalchemy/dialects/sybase/base.py
lib/sqlalchemy/dialects/sybase/mxodbc.py
lib/sqlalchemy/dialects/sybase/pyodbc.py
lib/sqlalchemy/dialects/sybase/pysybase.py
lib/sqlalchemy/engine/__init__.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/engine/default.py
lib/sqlalchemy/engine/interfaces.py
lib/sqlalchemy/engine/reflection.py
lib/sqlalchemy/engine/result.py
lib/sqlalchemy/engine/strategies.py
lib/sqlalchemy/engine/threadlocal.py
lib/sqlalchemy/engine/url.py
lib/sqlalchemy/engine/util.py
lib/sqlalchemy/event/__init__.py
lib/sqlalchemy/event/api.py
lib/sqlalchemy/event/attr.py
lib/sqlalchemy/event/base.py
lib/sqlalchemy/event/legacy.py
lib/sqlalchemy/event/registry.py
lib/sqlalchemy/events.py
lib/sqlalchemy/exc.py
lib/sqlalchemy/ext/__init__.py
lib/sqlalchemy/ext/associationproxy.py
lib/sqlalchemy/ext/automap.py
lib/sqlalchemy/ext/baked.py
lib/sqlalchemy/ext/compiler.py
lib/sqlalchemy/ext/declarative/__init__.py
lib/sqlalchemy/ext/declarative/api.py
lib/sqlalchemy/ext/declarative/base.py
lib/sqlalchemy/ext/declarative/clsregistry.py
lib/sqlalchemy/ext/horizontal_shard.py
lib/sqlalchemy/ext/hybrid.py
lib/sqlalchemy/ext/mutable.py
lib/sqlalchemy/ext/orderinglist.py
lib/sqlalchemy/ext/serializer.py
lib/sqlalchemy/inspection.py
lib/sqlalchemy/interfaces.py
lib/sqlalchemy/log.py
lib/sqlalchemy/orm/__init__.py
lib/sqlalchemy/orm/attributes.py
lib/sqlalchemy/orm/base.py
lib/sqlalchemy/orm/collections.py
lib/sqlalchemy/orm/dependency.py
lib/sqlalchemy/orm/deprecated_interfaces.py
lib/sqlalchemy/orm/descriptor_props.py
lib/sqlalchemy/orm/dynamic.py
lib/sqlalchemy/orm/evaluator.py
lib/sqlalchemy/orm/events.py
lib/sqlalchemy/orm/exc.py
lib/sqlalchemy/orm/identity.py
lib/sqlalchemy/orm/instrumentation.py
lib/sqlalchemy/orm/interfaces.py
lib/sqlalchemy/orm/loading.py
lib/sqlalchemy/orm/mapper.py
lib/sqlalchemy/orm/path_registry.py
lib/sqlalchemy/orm/persistence.py
lib/sqlalchemy/orm/properties.py
lib/sqlalchemy/orm/query.py
lib/sqlalchemy/orm/relationships.py
lib/sqlalchemy/orm/scoping.py
lib/sqlalchemy/orm/session.py
lib/sqlalchemy/orm/state.py
lib/sqlalchemy/orm/strategies.py
lib/sqlalchemy/orm/strategy_options.py
lib/sqlalchemy/orm/sync.py
lib/sqlalchemy/orm/unitofwork.py
lib/sqlalchemy/orm/util.py
lib/sqlalchemy/pool.py
lib/sqlalchemy/processors.py
lib/sqlalchemy/schema.py
lib/sqlalchemy/sql/__init__.py
lib/sqlalchemy/sql/annotation.py
lib/sqlalchemy/sql/base.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/crud.py
lib/sqlalchemy/sql/ddl.py
lib/sqlalchemy/sql/default_comparator.py
lib/sqlalchemy/sql/dml.py
lib/sqlalchemy/sql/elements.py
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/sql/functions.py
lib/sqlalchemy/sql/naming.py
lib/sqlalchemy/sql/operators.py
lib/sqlalchemy/sql/schema.py
lib/sqlalchemy/sql/selectable.py
lib/sqlalchemy/sql/sqltypes.py
lib/sqlalchemy/sql/type_api.py
lib/sqlalchemy/sql/util.py
lib/sqlalchemy/sql/visitors.py
lib/sqlalchemy/testing/__init__.py
lib/sqlalchemy/testing/assertions.py
lib/sqlalchemy/testing/assertsql.py
lib/sqlalchemy/testing/config.py
lib/sqlalchemy/testing/engines.py
lib/sqlalchemy/testing/entities.py
lib/sqlalchemy/testing/exclusions.py
lib/sqlalchemy/testing/fixtures.py
lib/sqlalchemy/testing/mock.py
lib/sqlalchemy/testing/pickleable.py
lib/sqlalchemy/testing/plugin/noseplugin.py
lib/sqlalchemy/testing/plugin/plugin_base.py
lib/sqlalchemy/testing/profiling.py
lib/sqlalchemy/testing/requirements.py
lib/sqlalchemy/testing/runner.py
lib/sqlalchemy/testing/schema.py
lib/sqlalchemy/testing/util.py
lib/sqlalchemy/testing/warnings.py
lib/sqlalchemy/types.py
lib/sqlalchemy/util/__init__.py
lib/sqlalchemy/util/_collections.py
lib/sqlalchemy/util/compat.py
lib/sqlalchemy/util/deprecations.py
lib/sqlalchemy/util/langhelpers.py
lib/sqlalchemy/util/queue.py
lib/sqlalchemy/util/topological.py

diff --git a/LICENSE b/LICENSE
index 0208c3f5797a10a06a64d8d10d9da7fe2e7bb4fa..12dbfc61b14e7b14b0e2d1e920930db45b3981c6 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
 This is the MIT license: http://www.opensource.org/licenses/mit-license.php
 
-Copyright (c) 2005-2015 the SQLAlchemy authors and contributors <see AUTHORS file>.
+Copyright (c) 2005-2016 the SQLAlchemy authors and contributors <see AUTHORS file>.
 SQLAlchemy is a trademark of Michael Bayer.
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this
index f3061b6b296545272bdab20a43a5d1c6efcfc709..1b25dbcc8a30c86a436b5b13edd6682b57f5532f 100644 (file)
@@ -129,7 +129,7 @@ master_doc = 'contents'
 
 # General information about the project.
 project = u'SQLAlchemy'
-copyright = u'2007-2015, the SQLAlchemy authors and contributors'
+copyright = u'2007-2016, the SQLAlchemy authors and contributors'
 
 # The version info for the project you're documenting, acts as replacement for
 # |version| and |release|, also used in various other places throughout the
index 50ca03ae803bb992fd10524ac08e7d7f160942f8..e5ec9699d1de7b5594b5a3f7d1cd730aa94d8bda 100644 (file)
@@ -6,7 +6,7 @@ Appendix:  Copyright
 
 This is the MIT license: `<http://www.opensource.org/licenses/mit-license.php>`_
 
-Copyright (c) 2005-2015 Michael Bayer and contributors.
+Copyright (c) 2005-2016 Michael Bayer and contributors.
 SQLAlchemy is a trademark of Michael Bayer.
 
 Permission is hereby granted, free of charge, to any person obtaining a copy of this
index 01433cbcb9a2516fab0e21994976b0b2dd122f19..3008120ec316c997fc101e7ea3c6f97045e71278 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 59eb2648cad13b611ce98b90f92e3a872f5ace78..5357e34dc7b4ede5b9c7566330405e61c09ae882 100644 (file)
@@ -1,6 +1,6 @@
 /*
 processors.c
-Copyright (C) 2010-2015 the SQLAlchemy authors and contributors <see AUTHORS file>
+Copyright (C) 2010-2016 the SQLAlchemy authors and contributors <see AUTHORS file>
 Copyright (C) 2010-2011 Gaetan de Menten gdementen@gmail.com
 
 This module is part of SQLAlchemy and is released under
index ae2a059cf04ea71b0a1f85e19389618d9590966c..6a62b100491087c82eec6a5d62893b127e772bdd 100644 (file)
@@ -1,6 +1,6 @@
 /*
 resultproxy.c
-Copyright (C) 2010-2015 the SQLAlchemy authors and contributors <see AUTHORS file>
+Copyright (C) 2010-2016 the SQLAlchemy authors and contributors <see AUTHORS file>
 Copyright (C) 2010-2011 Gaetan de Menten gdementen@gmail.com
 
 This module is part of SQLAlchemy and is released under
index 6e00eb816e103ec62d6c2d90ff63fb15a97b1a97..208f32831697d5b3efa10325ab98dbe68e24625f 100644 (file)
@@ -1,6 +1,6 @@
 /*
 utils.c
-Copyright (C) 2012-2015 the SQLAlchemy authors and contributors <see AUTHORS file>
+Copyright (C) 2012-2016 the SQLAlchemy authors and contributors <see AUTHORS file>
 
 This module is part of SQLAlchemy and is released under
 the MIT License: http://www.opensource.org/licenses/mit-license.php
index 5f65b9306211d0e6d0fa47fd4a6739d5e9c6aeb2..d72c390cfd5c87cf69accca9a4d1651e145b4d31 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1bbf899c4c0d85fc0ba593336d1859672be71750..9fc0ce6b5b5f417818fed7e6121db4eabacf7e9f 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/mxodbc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 84bc92beef0e15d5328e43813edfc361991ef8b4..68bbcc43560de306a6caeb841f19c5121759d7e9 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/pyodbc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8219a06eb255beab83b3be994ab65c1d37a4ef51..e7b2dc9abf0996bfe2e2a42f65604c7c13092cc8 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/zxJDBC.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 321ff999b2eb49a096b932f4b6929fea5224f0ef..0bfc93747fcbc838c69adabc6a2d4f64b44845eb 100644 (file)
@@ -1,5 +1,5 @@
 # databases/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d90a838099f8d14791ad1cc866d82cea847f7858..5653f5b659ca5d000219bbb4e20f4f13b0c43685 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b2fb57a632e221f26578a30b72c421d9fc94876c..f27bdc05bda52b94d7b5aa4bea1138bdef6c7b4f 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c34829cd3a528f31d39b88bc88e97b04bf1a107e..4dbf382335c383ae5c41000ecd33d4c28fb28228 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/base.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0ab07498bfe6cbd13df1fe3dc89629d2cea5ec2a..aff8cff15fbdc053f636581acb4f3028b664074d 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/fdb.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7d1a834b8658eee9aa2424d518a2cae62f83a483..3df9f736b0002835b1236822871ebb5efdc04dd0 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/kinterbasdb.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 898b40cd53e1daae2956fdcc75188617f54683c3..8c9e85862f8b78882c9fa623bc066740eca49fa1 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6e3f348fc3c09bb4c1d076a6960d3eda9159764b..60fa25d348657e39d77beec6b2818f52635c4fbf 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/adodbapi.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8fdb8ee877c0516ea778936e68cd1853d48d2cb4..36a8a93c533775945b746d0085a04c7df25531cc 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/base.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a6faa7bca81c7dfc9b646168802b0b231cda3597..e2c0a466cd9564267f566e73b294851bc918e1df 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/information_schema.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ac87c67a9fae1b11aacacaf27e8e85d27050ea2b..5e20ed11b111ac8f01414a2e613df66bfb3fd20e 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/mxodbc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1d7635c7f9be234e8e7efcf7b08809ac79d694f1..e3a4db8ab6949f055149315460be5998fca50a5b 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/pymssql.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7ec8cbaa7630d1e02146f4f6b1e4bd533a0fc93f..c9383689c05659ca481940d8c81a5e52770be97d 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/pyodbc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 85539817e01efd8057eb01d367ad1d7a4763011f..0bf68c2a219324bbd78cadae8f64f98522557eee 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/zxjdbc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c1f78bd1d4010220f74da9e478cf6c2e4b45a719..fabd932e7b68b377a36716fc64afcf4901be9869 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9a1090247177c57bc79cdf594452af38b15a0f48..3f9c5990a538114b7e0eb21602e3977b85376692 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/base.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6d8466ab1d82adf35ea6538e6357b3087597b95c..8bc0ae3be7489352dcb6f0a87f3d4c2f39a07527 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/cymysql.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 58b70737fb05fdbaf3eb78197e8948794f1514b6..4e365884e6963d43d87f3c1d3d8c6dee680489b6 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/gaerdbms.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3a4eeec050a87d7bcd1d6d7e6703814f01d318eb..a3a3f2be9fba2a3cdada16164a188fdbc484c550 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/mysqlconnector.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4a7ba7e1d2d3038171c58e20e02df2ea66566281..9c35eb77b41ab89486fb6124d4473ed34d726426 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/mysqldb.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ae8abc321a5c4cebf8dfbb08eca1d201b0b8ac5b..b91db183698beca0d7d0fbd7ac45458bad8c3590 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/oursql.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 87159b5613839487c4930db05ec17d5f17f0f075..3c493fbfc25872cecd1cbf34b25b47b5ecda15e0 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/pymysql.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b544f0584e546e394ccc66cade09799eccfee02a..882d3ea4e81dac7b74a606f5e9efcad6a1bb2ace 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/pyodbc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 37b0b63096dbdf684fa73339f46a1e3cd21ef122..fe4c13705164f379b71749711263c583cc171c47 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/zxjdbc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b055b0b166de4a4e710491b90c7610ef8f62b2d2..0c5c3174bee7afbde853ba1993551893b69395f4 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2449b5a81ec38b4f9fd388a42f02e2263fa1f061..eb639833e17822a9aaca8775481ac7af7126e4f0 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/base.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index dede3b21a6b67c181a4b01c1fba05b3db1dd251b..cfbb87e7bff7b2b936fff69cca77badd01589cb1 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/cx_oracle.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b12082f4cc0bdfee443b6d16f77cbd34e7dda23c..8a9a6650b152760d5610c4d8b80a60a29f6cdc77 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/zxjdbc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3335333e5d336fa9f30d5dbc64f0c817e675c2b5..04d37a2e6e7d5180cc02cc81d6031b5f0af04e2b 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgres.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 98fe6f085466d4a32611809e1eaa34aa7a7bac7b..006afbdd9c7a793f1876f6c8dcae7bd8c35aa671 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e562177a7f846d8b88c54402e98a80c60a3f3c54..6a60c22a37dd48d6790884e5f312175e2341192a 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/base.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2a6dc1d932d091268f644414f0b07f326c3c6d5e..c6bb8909462577abee9f5767cbc5f0a594144185 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2013-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9f369cb5bd0d985fec02ce3d501b7f790c99182d..a4ff461866098a3c76abe2444bdfae51302af502 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/hstore.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 13ebc4afec6929a5eb3d31f7b9ac1bc6329727c3..f7ede85c9eacbf506c64e250941f68568485402b 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/json.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c71f689a3dd0707dc6ae79b98f7ceca96d6278cd..68e8e029dda4a49c6f7cd246ffeaa6e3ca098467 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/pg8000.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors <see AUTHORS
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors <see AUTHORS
 # file>
 #
 # This module is part of SQLAlchemy and is released under
index 36a9d7bf781e9752b891c5739a03b5ae2131db56..a0f0cca7548febc29bc14ed30feb0d32fbb6c4db 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/psycopg2.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 97f241d2e0d4cb9319dec5d8b4c7d99c65a076c1..ab99a8392fbbe0b385a0e85efb4a63d5d83d004f 100644 (file)
@@ -1,5 +1,5 @@
 # testing/engines.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index db6d5e16ca0638f4e10c9291a9f367ce77190a05..f2b850a9ad27c26db031ded53de7f46f0793da93 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/pypostgresql.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 59c35c8719bdb41d671fa2e3bd874372013c6db9..42a1cd4b17655ba1095dfd79aae00b07f138622b 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2013-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1b542152c7e459d886cfbec185c90927ab1a41d5..cc464601b3d12c6deeefc2c650326b81485acdca 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/zxjdbc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 608630a2520f76bd0ab306fb6a7d95c3a9e63b0a..a8dec300aa8f25f84c0bd4e6fdd2ca386322175d 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0774a76a95023a80c822f5fa7d837863fb0be14d..e623ff06cc6fd8b271f4c5e537071a434e50a14d 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/base.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9166e36bc39597938e58fa29f6d970562a871c6e..bbafc8d60cfd4a5cd879ca17544a3f7a76d9245f 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/pysqlcipher.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e1c443477f34438b3d9034cdc8200b5b62318918..33d04deebc37dd5446744c11cb81bdc6bea983af 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/pysqlite.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0c55de1d60e89af1f3dad82788c5f22fe3a6e690..18535edcb279a71553e628926a2d9e5c302e82ab 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b3f8e307af76f49546cb884acc5902f5910a32b0..1e38534fb0729cfb4e28fed59c053407d610d2e2 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/base.py
-# Copyright (C) 2010-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # get_select_precolumns(), limit_clause() implementation
 # copyright (C) 2007 Fisch Asset Management
index 240b634d495a018f79c62db1ccadfb6b52a6c5e6..60e6510a5bf3b48f9fdf31a57c32e1cdfce6c598 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/mxodbc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 16899707445855a6fd7ae12f79573f6546e8a05c..348ca321d229cf22334aab24ba2bb345d4996f97 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/pyodbc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a307394448b33ab564efdf730c6076b382b67f85..41ca47fd37787dca9aa1130a837cde2399525a05 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/pysybase.py
-# Copyright (C) 2010-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0b0d50329aeea318e1511ef5caebcafcdcdf8185..09054d9fae479ff07f83627546b352f41a8a6873 100644 (file)
@@ -1,5 +1,5 @@
 # engine/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 31e253eedd5622af68a310dacb41c958e111c928..80edd950726a9344d24f60ce14f8ff37ea62a1a5 100644 (file)
@@ -1,5 +1,5 @@
 # engine/base.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 87278c2bef2f96b82a66a2d7be35504ed2c3c212..9798d132d470a4d6fd6d3dfa19f62bd1352fdc38 100644 (file)
@@ -1,5 +1,5 @@
 # engine/default.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3bad765dfe466be22e413fc03916200fdab2d598..194834230f435ec05098d278741d85510e7b5f55 100644 (file)
@@ -1,5 +1,5 @@
 # engine/interfaces.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 59eed51ecc2f0a76209edfb4d947202a0c1009bc..98fcfa0269dc0458df3c3f45a3a816afad33aa79 100644 (file)
@@ -1,5 +1,5 @@
 # engine/reflection.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7d1425c283dbc6bba2f7ef6e048921b1c0ced849..689382fc94a1f85dbcd6d92ed8876c57d8c9362a 100644 (file)
@@ -1,5 +1,5 @@
 # engine/result.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a539ee9f715782ea22e08a7e3b0f0b2ad1ef63f1..2a018f8b16a5c967f852f8581a104fd32262008c 100644 (file)
@@ -1,5 +1,5 @@
 # engine/strategies.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0d6e1c0f11a07b4b6fb01afd54edf7053b8043ec..505d1fadd08b9b7315c1df8ae5dcf5e252dc56ea 100644 (file)
@@ -1,5 +1,5 @@
 # engine/threadlocal.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 32e3f8a6bd0faa8acd4636090744424e0095fa36..3cc2f351f2a43ccae50be150daf3b14bce056405 100644 (file)
@@ -1,5 +1,5 @@
 # engine/url.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3734c99601d71b5ee3fab32e291bfd65aabf0bbe..d28d8709820aabb5acf804fb93d3f74de88336b7 100644 (file)
@@ -1,5 +1,5 @@
 # engine/util.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c9bdb9a0e20287819d4607edfc7d7f336d4988b8..dddb9242959fd33d03016386d422c52240f18548 100644 (file)
@@ -1,5 +1,5 @@
 # event/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 86ef094d68e492a89ed343a450801b4179e0ee97..0af48dff378cb6c83ffc492078f19e100dfa62ee 100644 (file)
@@ -1,5 +1,5 @@
 # event/api.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8a88e40efc9eb0cc1bd1b2ad5e3d8af3c24b7924..14940136ab7c334bfa81bac634d7750493655f50 100644 (file)
@@ -1,5 +1,5 @@
 # event/attr.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1fe83eea2445815736ad7439668497f049805ebb..81ef5d89c8d23fd134bf44322e02247275004dc1 100644 (file)
@@ -1,5 +1,5 @@
 # event/base.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index daa74226f09cdade5c2787c49de1b9c3ba2887f8..b359bf48ac9fc651073c7ed818a084a0fd31d080 100644 (file)
@@ -1,5 +1,5 @@
 # event/legacy.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a6eabb2ffab1952bdc97dc5d51619786602e32f1..e1e9262b651fed228526cccc81f36452e6ff23b9 100644 (file)
@@ -1,5 +1,5 @@
 # event/registry.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0249b26238dc32b3887af9125f3f77016ba30d08..1abef26d64c5015225df12217f99f3a7a7a1e0ef 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/events.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3a4f346e0adee5602e235b2c9e8da2e027abfdbf..27298422938b26a2c2f79a106b39cd748f84b192 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/exc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 60a17c65e399786433443c00913ccecf1240d2df..1c8a59a18de5033a1fe0a9da15ee5f52c8b6933b 100644 (file)
@@ -1,5 +1,5 @@
 # ext/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 31f16287df84779f832f432fe4785780909e5486..fdc44f386ce2f2dd00017341e7996d77a4c8e363 100644 (file)
@@ -1,5 +1,5 @@
 # ext/associationproxy.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 616cd070d58ff74f0ffdb352e44bbb2fead0aa97..023d11ca8ebb157c186a561ed6a8e54e048b3707 100644 (file)
@@ -1,5 +1,5 @@
 # ext/automap.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index df27c261c97398039b4bdc3319c2f583b3b00eae..2504be9ddf160b177efbc3a4cfcfb6cdcd245447 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/ext/baked.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d4d2ed2efac42cc923f21a8601506a108d81d68e..86156be1fba97f44079b8935caa3936d6b64030a 100644 (file)
@@ -1,5 +1,5 @@
 # ext/compiler.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f703000bbea298bd87b433179d83258c0772e508..f96a40252cf9b81b26ce578187a6b21388a1194f 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5fe427bc22ac35ea8b70dba7937eef656276f247..54e78ee1a8767284a0858a7526fa8a22a1dd11d5 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/api.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 57305748cc9e7cdfd2f22c6519633c8b9ff74d33..59ebe3722a570b96504c6d55b580615164520389 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/base.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 050923980f8ed22c87894fcaf0ebf4d4ebb15cfb..0d62bd2a8a75be7a96d019b6723629bb25f422d5 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/clsregistry.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c9fb0b04494987772e40390dc407abc502618963..996e81fcab10d657618a80e4c12dce203da161b2 100644 (file)
@@ -1,5 +1,5 @@
 # ext/horizontal_shard.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0073494b843aeeba73f38de94231c7fc32335f82..bbf386742aee09b83ada1899b1ab92e97323f5ea 100644 (file)
@@ -1,5 +1,5 @@
 # ext/hybrid.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a5fb3b7909feebad5020b288456a12b6f72bba0c..977fa0d4e6bf8d9e513b08feaf08d9e9a8fb9374 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mutable.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ac31c7cf7795686f66fb8f25851bcffcbb5c99aa..d060a4f03f23f61bca43556478ade6599ad2a905 100644 (file)
@@ -1,5 +1,5 @@
 # ext/orderinglist.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 555f3760b2014ffdaa08980ba72098fb08c3b649..893f7be22793c82aeafc7458756289d02d6cecc9 100644 (file)
@@ -1,5 +1,5 @@
 # ext/serializer.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a4738cc61b58dc0d43f1d524791fca76bd9c6953..5c16c45c92cb837a1d59f0223ba4ce32b1646dbd 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/inspect.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 717e99b5e9ba33aeb9035d31bfc573cab7f6fb5c..464ad9f7076ec9727e0af835e4a7324e3e3c70ea 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/interfaces.py
-# Copyright (C) 2007-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2007-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Copyright (C) 2007 Jason Kirtland jek@discorporate.us
 #
index c23412e383973083f3b79a23eb591b5fb3034cd8..b23de9014f772072575e7d1e806253e8593eab2d 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/log.py
-# Copyright (C) 2006-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2006-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Includes alterations by Vinay Sajip vinay_sajip@yahoo.co.uk
 #
index d9910a0705c8133d624f48d7f9dc414bed9198b0..7425737cefb74ba781a5eb0ca9ebe58d1a9cdbd8 100644 (file)
@@ -1,5 +1,5 @@
 # orm/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5440d6b5dd2752aa3264a8a75ae8f547be05538a..16b326439e36c03653e1c04eb8f7dd3b3480522b 100644 (file)
@@ -1,5 +1,5 @@
 # orm/attributes.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 785bd09dd53a743097d6a9f655e444c7fdb89b78..7947cd7d7fbf4b1e274716ab8443429cd36ae33f 100644 (file)
@@ -1,5 +1,5 @@
 # orm/base.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b9145bae288b184cdd1fc355adadf04a13ef2372..f3c609f154ea7bf1d9f297668abf304e87256d06 100644 (file)
@@ -1,5 +1,5 @@
 # orm/collections.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f3325203e655c4055fd0ee1fbfa103935e49471c..a3e5b12f90222e69f523d7e4a12a0ef473914838 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dependency.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bb6d185d4ced8829fdf5ac532cd0b0ce7634744c..6477e8291f8900c67904108d9d145a591ddc182c 100644 (file)
@@ -1,5 +1,5 @@
 # orm/deprecated_interfaces.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 17c2d28ce35916e0aa9c700687c1ec079c54e0f7..6c87ef9ba9a8f413652033f2522708af65cd3547 100644 (file)
@@ -1,5 +1,5 @@
 # orm/descriptor_props.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index aedd863f88049cf1acbe3b4b6e15076d23570970..88187cdcf0cc18fce83965df1d0433b70cf6f001 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dynamic.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1e828ff86fe02ba40379a1a91e4f3950c22d3d82..534e7fa8f1e24d70c6368f9890c13dc5fc81e70e 100644 (file)
@@ -1,5 +1,5 @@
 # orm/evaluator.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b9dc0b9b5b0631f8df7a6e5bfaa85f1b857449bc..67ce46e5a9279f9c15583fef05ef7257120252ef 100644 (file)
@@ -1,5 +1,5 @@
 # orm/events.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e010a295d51332a4cab26881280c633a6fafa382..db993220f53f2588bf3211da7dec839032fa091c 100644 (file)
@@ -1,5 +1,5 @@
 # orm/exc.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b42703855d984b0121e8576f720bd84da2af19ad..5646732e8566f185bb08ba7b2019af82f6bca3ad 100644 (file)
@@ -1,5 +1,5 @@
 # orm/identity.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index be2fe91c2cc81b6e0f08f5e87cd1ef33d6731c94..d41ee59cb985630b8e9adcf386bb6f557341dd89 100644 (file)
@@ -1,5 +1,5 @@
 # orm/instrumentation.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cd4a0116d086d7f318aed7156d55331a01430239..2ff00ae1c02ee6289da411b1fc160755bc69be3e 100644 (file)
@@ -1,5 +1,5 @@
 # orm/interfaces.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b81e98a580f5a3ff3bcab65a4e6d1978fab11d4e..d3e719d85b6dd47ca4383190f781afd78638266b 100644 (file)
@@ -1,5 +1,5 @@
 # orm/loading.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 354ec399079ba67fa9d670963d4362977a118d6b..97e46382d996c663ad0bf5421b0b943febaf2168 100644 (file)
@@ -1,5 +1,5 @@
 # orm/mapper.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9670a07fb220a5c36fa87607db1b644c90b7dc81..cf184655556262320f7fe96b38600a3116cf2f49 100644 (file)
@@ -1,5 +1,5 @@
 # orm/path_registry.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fc48dec25ae631243a3a2da228ba991f24d0e5de..5d69f51f3ff7336e02c2f736c5525d8ff69f9569 100644 (file)
@@ -1,5 +1,5 @@
 # orm/persistence.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b1f1c61c4f7cbab88fdf87305abbb24f1d5a63e1..f8a353216dcc81945a24c443543b8c3ffea908af 100644 (file)
@@ -1,5 +1,5 @@
 # orm/properties.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1f4013d30f7b7bd281c1cbf496b69fc5d594b805..335832d1db9c5d4d126ecf4092aebab0d09ecb81 100644 (file)
@@ -1,5 +1,5 @@
 # orm/query.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 929c923a604d98a40dfb1165948af2198bb08788..c58dd98fb60eb201b3c5ff93be2abb50392a3a6b 100644 (file)
@@ -1,5 +1,5 @@
 # orm/relationships.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 176523c3b069247c6c48e3a3e9f46a95d8887410..6306514cb70c3ddbb27f0d890e199937a75021e0 100644 (file)
@@ -1,5 +1,5 @@
 # orm/scoping.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index aff64bf27d4616f8d21e29a78615893a320afddb..e2a3fb9929e37bd9d85bf200575271feb0f39fa0 100644 (file)
@@ -1,5 +1,5 @@
 # orm/session.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3cbeed0b4eb9714bf288183b6ad80042a6e2e409..f5c763fc281e04f899511ba7753b8fe4e73cf5e4 100644 (file)
@@ -1,5 +1,5 @@
 # orm/state.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0252a65f98225d0d4b5fb930f4ea6cd004950c84..7942b14d4182264241f1e643b25e1c9c7a4a010b 100644 (file)
@@ -1,5 +1,5 @@
 # orm/strategies.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f08367941667739bab487ea3561a3dae5916fa55..141f867f5745e4697a422afba78c2a33fa34de32 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e8e273a86234018281098556f71f663a99176c1b..ccca50871a233c090b09ca2afc8a449a524ac452 100644 (file)
@@ -1,5 +1,5 @@
 # orm/sync.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1ef0d24ca2259a9dd8863d7d970576e42109042e..8b4ae64bb0c608aeef6e44c5078533838754e59d 100644 (file)
@@ -1,5 +1,5 @@
 # orm/unitofwork.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e08b27480d7921a8c830c966cf67e52917bc8fb1..42fadcaa6c86ed67ef6d42e543a61266c1e34f15 100644 (file)
@@ -1,5 +1,5 @@
 # orm/util.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4dd954fc4954b0cd9c06a76cf764c0d7285d5d84..32b4736fa3315f19d7b3c3a821dd9df665e51563 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/pool.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6575fad17d519d279e4cfd107f512d188a704542..b57e6740b7571825312a73484e29a8005d5be8b2 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/processors.py
-# Copyright (C) 2010-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Copyright (C) 2010 Gaetan de Menten gdementen@gmail.com
 #
index 327498fc55482ccb00f840b108b13cf43b764326..5b703f7b6a152db64909afa871b5f7ee2b0705e0 100644 (file)
@@ -1,5 +1,5 @@
 # schema.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e8b70061da4fd5da744c18c1e459a66a2df2c784..eb305a83ad2b7d62b9de3912958b605665abc574 100644 (file)
@@ -1,5 +1,5 @@
 # sql/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8fec5039bc055fd189fdbc05cfce3964c80876b3..6ad25abaaba1101ba67b512068700368d8ffb76a 100644 (file)
@@ -1,5 +1,5 @@
 # sql/annotation.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 97fb04dd92db0de8d8ba214d346aef8ed86cbacf..cf7dcfd310e2157c4dd76084cd62078e54409fdb 100644 (file)
@@ -1,5 +1,5 @@
 # sql/base.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 930d149bd5b0500c762c483908aa3b47c93e0691..fd6b6d9b046c248f83a690e54ee1e3ee27ed5f37 100644 (file)
@@ -1,5 +1,5 @@
 # sql/compiler.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a64a6479b00db29b0b3ae6777b3ae0b07bc245ff..da63c502182bb0d7bd54bb9dc63581f6a8fd34fb 100644 (file)
@@ -1,5 +1,5 @@
 # sql/crud.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 71018f132b9ca9c285c865c7c825e8ff962a7331..1cb9eeb70d28d82e20380c2c08d646e2b0b64fdb 100644 (file)
@@ -1,5 +1,5 @@
 # sql/ddl.py
-# Copyright (C) 2009-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2009-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e77ad765c791eb55f2edf6f7b241ad21b874ea6f..305f838938e4a26c0f630fd8337603fd2e0813c0 100644 (file)
@@ -1,5 +1,5 @@
 # sql/default_comparator.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ddda109f68916cf6d98001f494d154ac21f79f7e..7b506f9db9d44328a575b6a294e9995bc3766b16 100644 (file)
@@ -1,5 +1,5 @@
 # sql/dml.py
-# Copyright (C) 2009-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2009-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1bac5df610a9cb83f0297f7d677c3c9eefa1261b..67957a198648badce48894349c83f22b2b0a8403 100644 (file)
@@ -1,5 +1,5 @@
 # sql/elements.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 74b827d7e65ce948d70f5b9929abfe6776b61116..832779cae46e41f821cb4a839b9fe7df0656097b 100644 (file)
@@ -1,5 +1,5 @@
 # sql/expression.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 538a2c5497ddfcd1ee1c0194e624c9706ef3ab4f..50c1ef06e0e964b8dcec75380b5423ca68b7b845 100644 (file)
@@ -1,5 +1,5 @@
 # sql/functions.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bc13835edf4b606115678dd7134e5ce1fc2eab95..2a1a832a42beee3b1ebca12cf0e766851e898a18 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/naming.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 17a9d30862b8211be9592b1f0e4ffe87af4250b8..05be71e9c22eaf423189d1f08c5f80951731fcff 100644 (file)
@@ -1,5 +1,5 @@
 # sql/operators.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 90c8e4e0965b029482b9ba363d1db4876c61ff42..c122ee4e8c5c7cda31d633272446f23dbbb50b24 100644 (file)
@@ -1,5 +1,5 @@
 # sql/schema.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bfba35de14882632d9f051678d810f524ec1e0a3..b986fd5ae6561545c514d6c66d30e856523e0225 100644 (file)
@@ -1,5 +1,5 @@
 # sql/selectable.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fca3ca50a93b45580e2a2cd0021c63e6f64d96c2..20a9b21e35e6ec54a90edbf41d24ae07ce377a41 100644 (file)
@@ -1,5 +1,5 @@
 # sql/sqltypes.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6bedfacc6457a0414f9948ae76b31256bc5e1cd2..2997a8dbfb7e6a7b9bae3f02c9cceabf649d6449 100644 (file)
@@ -1,5 +1,5 @@
 # sql/types_api.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e41563a4933e35eb323ea28b12369e45c006f385..16a1421f6dfc37b7b00d594b96379c9c41f6b126 100644 (file)
@@ -1,5 +1,5 @@
 # sql/util.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0540ac5d3a4dafd31a564f993f438b3e1c6582cb..d12213e3539f3ba85c4864cb28e5f7af8d8b0c50 100644 (file)
@@ -1,5 +1,5 @@
 # sql/visitors.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bd6377eb7e3d53ce5fc299f30810f3b8c3d642c8..4e02227c31da08ee1e20c56e0f529430c6e51ee1 100644 (file)
@@ -1,5 +1,5 @@
 # testing/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 63667654d44f020bac610ea0426b8c9e4adc8abf..492adcd62ae485b4dd9a3f32ff059b95071622f7 100644 (file)
@@ -1,5 +1,5 @@
 # testing/assertions.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 39d0789855705f314c08e3a7d4f79742afc6ea16..10f7ca754f1a1d02de676f1ca145e722d7308673 100644 (file)
@@ -1,5 +1,5 @@
 # testing/assertsql.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a3d6e1690e739fe0b7b43d3aafd4ec7081702357..da5997661ece7a25e18eb1d3dadcd5cfdd422db6 100644 (file)
@@ -1,5 +1,5 @@
 # testing/config.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1eaf629601f50d5ad2ed0f053b3540337311596b..def9f3c140ca352c3297083f205498d58c1d88e2 100644 (file)
@@ -1,5 +1,5 @@
 # testing/engines.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 65178ea5b1bf166a1248c9e2a47c7ea23b3de372..a5d04decca6ae328a52a2d3c2c6b7233295ed363 100644 (file)
@@ -1,5 +1,5 @@
 # testing/entities.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cc8af43a06e8495ca41bbb1ee72e7df9cccda841..11c9e1b0baeeaca0578d2868c25561749dc8029d 100644 (file)
@@ -1,5 +1,5 @@
 # testing/exclusions.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5cd0244ef7d8fafc2581aad5e711fbd7793b28ce..d6712b46154d31ca8ffe10b58d6579d4497bc537 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c836bb407b4c2cc39ae47e04bf6a13f18abe7672..674f0851acff73a70d972d5c7885aaab85ed75e4 100644 (file)
@@ -1,5 +1,5 @@
 # testing/mock.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7b696ad6793b232ce0c0007320e6a60b9ce40c30..d6814a13af9c0e92737398b5098d35a0437f3d4d 100644 (file)
@@ -1,5 +1,5 @@
 # testing/pickleable.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4c390d40957e090348d1da8c73d2f80c50348a85..9fc5848fbe62edea1f6fd11bd4778a50a772841e 100644 (file)
@@ -1,5 +1,5 @@
 # plugin/noseplugin.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6cdec05ad73a41abec01907d51773a92a208ab4c..84258df922b3cb59e278662d2cf6ef3b436a5102 100644 (file)
@@ -1,5 +1,5 @@
 # plugin/plugin_base.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 357735656f7e932151748c3dd58bce91aaf53e52..4f3d332f9d81e36135eb9052aa38d6a7bbc56334 100644 (file)
@@ -1,5 +1,5 @@
 # testing/profiling.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e8b3a995f6257522cb73510f0842d1b0e2f27d4c..5d31c4d6fa8a3073f4b3ab9f3256b8bc5a60b98c 100644 (file)
@@ -1,5 +1,5 @@
 # testing/requirements.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 92a03061ed41ad0b6fa364f3fef29049548515c6..b58aa019db4646ced73325eb92b9c38fac164eb1 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 # testing/runner.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 93b52ad58b0b1796d7ef075f6e6c9d37ca64bd51..2cd6e4cd2f7738f4d590ddf694d4b9e20756cc10 100644 (file)
@@ -1,5 +1,5 @@
 # testing/schema.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8e1226c3473b32a9172793b7c806b6f14392f123..754e2ad923f9f44abd02885ac37874dbf22fadc8 100644 (file)
@@ -1,5 +1,5 @@
 # testing/util.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 19b632d34ae454172275090011c05023830d41ab..de372dcc4f9cc911456812d9a4954f1242e90acc 100644 (file)
@@ -1,5 +1,5 @@
 # testing/warnings.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9ab92e90b55424171ae82c1bea1b7f7b9e78c53e..44ed696d602525cf1da35592efcc2aa94e5f6982 100644 (file)
@@ -1,5 +1,5 @@
 # types.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f52d909cad51992bd523e23a76bf0ac3fb921674..8dcec48c3ac0108839d2e22a592ee74b58cfc7ad 100644 (file)
@@ -1,5 +1,5 @@
 # util/__init__.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3869775cf7803927a2c946453d0e4b2327676ace..ed1a3e471a46a71b8dd609974b79bf1f471a70dd 100644 (file)
@@ -1,5 +1,5 @@
 # util/_collections.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 737b8a08780267aedf7772dcb204c1e8672fc26e..99b5177b50a84c181347ec1368f19ed3f334c8bb 100644 (file)
@@ -1,5 +1,5 @@
 # util/compat.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4c7ea47e3a66617fbea554fff2256f7cbd8374bb..12fa63602abfc11a2bcaa84ea60a75fe4ab2aac3 100644 (file)
@@ -1,5 +1,5 @@
 # util/deprecations.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 003cee81bf0cb79c00146d72840cce3d93df669c..0318d1e0493395e6ada8d36e1fca97d1dc7c43ff 100644 (file)
@@ -1,5 +1,5 @@
 # util/langhelpers.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 29e00a434c51761cfd61a52ea9b381daa1bea73e..221347158b01866eee70c0acc6e7813cdd52caf4 100644 (file)
@@ -1,5 +1,5 @@
 # util/queue.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0cd2bae29a9b5c7bb2f05dccf4bcc8f40058534e..5c5c54c53bdbce905d9dc004c7504b49c7f2dfe5 100644 (file)
@@ -1,5 +1,5 @@
 # util/topological.py
-# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under