]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- happy new year
authorMike Bayer <mike_mp@zzzcomputing.com>
Fri, 29 Jan 2016 16:20:22 +0000 (11:20 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Fri, 29 Jan 2016 16:20:22 +0000 (11:20 -0500)
177 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/enumerated.py
lib/sqlalchemy/dialects/mysql/gaerdbms.py
lib/sqlalchemy/dialects/mysql/json.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/reflection.py
lib/sqlalchemy/dialects/mysql/types.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/array.py
lib/sqlalchemy/dialects/postgresql/base.py
lib/sqlalchemy/dialects/postgresql/ext.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 e19078a87011ad0067a54657c998e256df435b27..cfcb112d585a3607a4d4c4b9c70dafee95d7b239 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 dde179bf50c7f8d14f0d349aa7acf04aace5d9bd..43b06edd0f0bdef1168fe7164f6af0aea2cabab1 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 a87fe7b56542e4b439a7f421ce2cd0b2bcfb4dfe..f5593f60d8db8c5cba9db9e33564284a75bc8f8a 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 f851a4ab88f945b8c6685bc48b45cd5ab02d3c81..af20c39069176b251e917ad56eefa76e78101f6f 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 acd419e859285c9334617f358b54816da00ff4e6..16e2c55b83fe4fb69bff84286e68f1991a4dc779 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 815529c88daf7c5ba27f84f0bcefc465b4876939..fe1e94a53d1c3e8cadd744bda1f0be5574d4b8ed 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 ca204fcd18572d4a7f8edb4eca4de6b9c92c349e..a17bcb402eb5b3cc2bf2861db7c671dae106a2d4 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 61c4a3fac8820ff6857e403d9fc46d462020a013..979484f78766d9dba5a19189a7a5afd472311007 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 53de2b5fea312f33e233f9a9ae7f7c301ca69930..5c4dc61f0821f09646d7e90f8ef3ae74cde2992e 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/enumerated.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 a30cdc841d21dcb7d76cac78c5b9b595fb1a8ee9..b2d5a78b5dc784d4301b10ee4fa315c560940c4d 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/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 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 cf1078252f01d3fac0d698248ad9950e9236bdcf..77bf9105ebd4c4e4d8e21e0069f5625fb4d60b86 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/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 9512982f59f5ce78f00f3adec9901a0d3debcf3a..d20b8bdfce50f5caf0fbbebacf97dd8590b0bbc8 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/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 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 82ec72f2bc1bbef57e81473c665e9c5feaafb326..6992670c4f46e2c9ce72124f20dd722f13542ff3 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 d67f2a07e85d62945df5f857af1fba1c4cf27b61..8aa4509bedbb4938527488b0332a6da905bdbc88 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 f4316d3183501be8198addffe64b9aaa586a8613..8d811aa55c11dfc6b377ff0e81d7b11e4a545878 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/array.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 692305319c5154abd76a7436d6a097cedf9a6744..b16a82e043c015845dcb50d7ccedd99062639673 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 66c7ed0e56ad0a3db6446a610705cc646f7ecd9c..8a6524f428a67d8fc6e956ec0ea3cb57aed12c3f 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/ext.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 d2d20386ae63113217819a34b2e67ac116b65307..67923fe39ecd604e1f121122a07e89fbcbcd25df 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 6ff9fd88eaef4f852d2d1b6403d945e7b4363843..b0f0f7cf0c41226db0378da46f7da294a872f9f0 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 2c745e6f761e0f24b3d5b37e8c6ff0ea2d28cb68..9daab5851916ec6214076f9f48067d82a3d3ff5f 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 82fcc90544d277c6c486ba98b4e205bbbfb2efd5..fe245b21df33792486d96e3f2a627283b53a45b1 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 0e048aefff1cc9a608175531424828dcb4fcb1ae..b5017075960c45064c115de1466929403302ee33 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 18752183157a4519a3279317e01c6f5ac8d4a9ac..fba13c722d626847398cd6c36e4e433f86c1c6b6 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 02c35d6a9d0a728789312e6832cea34c463b6270..adca6694e2156452ea5dd7a9f89d0aff0386e1e1 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 0b928566d318063e3f18fb82add6fefa0b10b087..ef34eef01738ebf58ace62b36f300f6d63b56466 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 9f845e79d2c30853605a69e57145d8aabf5aa262..3ed2d5ee8ceeb9fd0b694e3095ac51cdda4835f7 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 c84823d1e6b31c96ae5bcd1f8f5950841041207b..26731f9a52a656204bb509b272187267042dda7b 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 6880660ced21d8b654ed27eabb83b6f628ce56b9..eaa5e2e487364570831d8e4fe82b009000530710 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 39f4fc50c903d58ad8ec23dcbab7fa3d306d0c5e..3305c4ce5ff78a6bfa9ab6a0b5197141df95bb75 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 d8e2d47642f08531f41f55d47ecd586dbef506b7..82800a9189b4344da351048b22415a55bcc4e6cb 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 9a955948ae6e19860de436a90126cefc2c379e2f..cdb3bb7bb7408cb10037438fdf6238ea07c57b7a 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 d255b5ee40b23ce7e2fd2be692794886572cb73b..bfdc1e1a0f00291ba8f398a9ef4d08d007f4d937 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 8605df7851bd31d86fe0f8083de860c3b508c91e..017ad030041c6faadcaa65694a5cc6fb34c2ac54 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 58a69227c1d831dea728476837fd67fd6e1e1c8e..1e022e1dd811fb7c21d64d227cf9c526d1626a29 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 ca593765f8b07906059be83ee025ac5147f5da0a..026ebc317eb80afa0113158ba04cae09d98f96bd 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 5b0cbfdad2c095ac473cf935b629f6dbacc1a3bb..d05fdc9cbab46358dc192746a392bb4ee761ac60 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 2dfe3fd5cfde7d0ee4c50c4880ca80cefc00bc40..0ab0548a128602aa9522576bf9dd21fcd28c9361 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 ed8f2733263d1addc031a9d323d274a3cb582370..faab70e37add37337559ffd645f4cf0f0af0d617 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 b5a62d6b2bdd70c819ae6103d16f24de80b74336..b8bc205d48a4e29a4af8c72b8dd12d5a634f61d8 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 53afdcb2885ad26082da230c7feeeda3f4ea84ce..2236b2f76172d27db8e8ef40a1999fec92e5e9af 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 30b39f60047fa241071d01c9c9c376766f9c8a0a..b9a1f9df9a31f881cd392654eee8f1cf3e7d19b7 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 0d4e1b77137a60235960db7d628ff55a79f6a982..8197e041f637aaf67a8ecce81131716cba738fd4 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 6b808a7012f763c4cd6334fe80124e761b108663..08600c35755caa7c37d0a8719ca63f48c2ff0d5a 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 83856eebf1117f2419ecc5de5abac79dd6668eef..17f94d4af0ec26f9cc543044a8fbe61034b1a2c1 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 0af8f60fbc38a829f7aa4d5180c6745ad71e7e98..bfc9bce944abf15a05cf313b1ee4a7d7b27350cb 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 b648ffa3b725b60fe161db1c4718f7c99127bd36..a957463cf29ec9a619680262c3e93770f424ac81 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 aa818258a523e6afb40b9c66d56775c1941ed9f8..796c17ec42070459f17d5eadbf17647c3e4f2471 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 46183a47d451de46d153962164ce3dcbe78711ae..edea9e50c9511224c1ccd7f56146945228f34d12 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 f4ad3ec000783f19f1bee4f8d055393b6770c374..a56e29cf52c4e6d73f8229be40417d7e5b20db79 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 492999d169297c92de48434b7abb929c00c5313d..2431e53cc06e316fdd809fd2f7607fe56efdcc92 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 c5495ccde5cf71ec5648d3a86ef9769001299f6e..b66778578ba03977e5c504fc587e3129899580e2 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 7953b61b8fba916acd9b5a9eafd2c040c72d9e87..48f27b8b8173b8fa718fe46c8fee7cd0799a1381 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 ddb57da7773d33f56c8b164ed76e019916800130..6c8e69dee39782ef8c74ca07e270058ee220c2f4 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 fe2fecce8819d9d11bec1dd3478ae03a6684ec4c..ca822d3104827120176d374cc1e35a16169685c4 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 27fae8ca46384f769d3e0b6fce4727e4f9e41979..a63eac2f831d135c0f7fa8ab10361ef4f06683c1 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 3c654bf6737167dad5c8a5d822cee70030655b00..756ad7e7e965841238ffeb318deed0cf7471ef0f 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 f4f90b6646abddabf75d37da840400fcdfbf69ee..ba1d0f65e9779b47c81caa57fac578a622d6fbc5 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 0626cb2b45628a80d118508cde1c3a35b6a93c41..5e709b1e3a6daafcaf74aef1911a444666e11eb8 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 1955fc9349adda3f55d52d8e9a7ca2d69a8690c5..c3906c2f2f1a2bfba8f35a577287bc705bcccb0d 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 84bfca0261c61bd7d97ff4805738ccc9c65152ea..d198d3912c98f408322d1a25c53329e079c5f954 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 c367bc73e0ca9bb22457567c4f3bebcb9f72eec2..2a7adf8afa8030a887dbf8649cd5fcfb00767751 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 f5aa9f22898b4a807ebec1456b7dee8a954750d1..1dcf0ee66ef6b0aa5a890a7cc5f399ce87df83b7 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 d24f31321e343c9c4964177c48c7cd04006076b2..a2663b81089ffd94cd60fb8d9f5518f8fd0f6596 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 8c962d7a3c8f777a6e8593ffd342bcd18f52793e..bb5a962561c6ed5292261c43cea1275b8e32d7a5 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 56c422cf1430ff00deab87e28b2537289f117a76..0aae12dcc0433446d5b889969fcdf178e819116c 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 5d7baeb9c158d95add4f8a8cdf2bee4148eb9b9b..b672656a0b898db85e329afd9fdd6abe1411bc9a 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 a152d5e9312e56a278eb11e9b9401f5adce66103..a88cd21ad2896800bf51880eada3d826b9c0cf0b 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 1b5d6e883b6c3094e07e7c50a38b9b2e9295dfea..d4c0dff8fbd874f91c419aff6fe476f5b48887cf 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 257578668938c95b24296f859554b4db42442725..c8526fbedebefb40832edf2385cc78751edf675a 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 ac6d3b4398123fe4061109f4c496905e6f2e288e..e054cc857abdc6be6cdd6bd59374dcd00575e563 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 a15ca8efac703924eaf9716e10bd8a8013b5cb45..927adf722704721371cc6c9d5ddec16717dc18a6 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 a1780536a7c5a45cf4f47b30ee89c9b26f709982..4675f7cdb8039a619ce29672dedff72ca803275d 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