]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- happy new year
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 17 Jan 2017 16:42:24 +0000 (11:42 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 17 Jan 2017 16:44:22 +0000 (11:44 -0500)
Change-Id: Iaaff6a66e7611320eca711add8a2e11aae42acf1

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 12dbfc61b14e7b14b0e2d1e920930db45b3981c6..b6e074bfc1edc780008ffdb6ba51e7be3e5ec93b 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-2016 the SQLAlchemy authors and contributors <see AUTHORS file>.
+Copyright (c) 2005-2017 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 124350e356a44ada8bc5821a9661b3c3c601bdef..fc70081e1a6089a07b58f6d605b846981712cfd8 100644 (file)
@@ -98,7 +98,7 @@ master_doc = 'contents'
 
 # General information about the project.
 project = u'SQLAlchemy'
-copyright = u'2007-2016, the SQLAlchemy authors and contributors'
+copyright = u'2007-2017, 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 e5ec9699d1de7b5594b5a3f7d1cd730aa94d8bda..354686ce2b618978f79d13baa31e114d4212f1f3 100644 (file)
@@ -6,7 +6,7 @@ Appendix:  Copyright
 
 This is the MIT license: `<http://www.opensource.org/licenses/mit-license.php>`_
 
-Copyright (c) 2005-2016 Michael Bayer and contributors.
+Copyright (c) 2005-2017 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 067fd2b8a58a987e89a6f89666da5005eb848910..876fc8123e1b5bc0646dc49aaeb0386baf34e0fb 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5357e34dc7b4ede5b9c7566330405e61c09ae882..10cda3b983264eb705d6585bd56099d680bf7b87 100644 (file)
@@ -1,6 +1,6 @@
 /*
 processors.c
-Copyright (C) 2010-2016 the SQLAlchemy authors and contributors <see AUTHORS file>
+Copyright (C) 2010-2017 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 6a62b100491087c82eec6a5d62893b127e772bdd..bf3199a938bb046eaebcfeb809e340fac2010170 100644 (file)
@@ -1,6 +1,6 @@
 /*
 resultproxy.c
-Copyright (C) 2010-2016 the SQLAlchemy authors and contributors <see AUTHORS file>
+Copyright (C) 2010-2017 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 208f32831697d5b3efa10325ab98dbe68e24625f..fb6a0f59d51d2e95214f051da6a8e13903c9ab18 100644 (file)
@@ -1,6 +1,6 @@
 /*
 utils.c
-Copyright (C) 2012-2016 the SQLAlchemy authors and contributors <see AUTHORS file>
+Copyright (C) 2012-2017 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 d72c390cfd5c87cf69accca9a4d1651e145b4d31..5cf06d871166c9167ba870dc7d1f277193858d52 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b644abf66e8b7fc26fc218b3e644d4165497457e..32e7e1870da11cce55c1bc1ea14ca122d6fffa32 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/mxodbc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2706daa5fa780e6ce67660765b3bda8f71c54161..ee8445dae4136216b07182ccefe451e5c5bec0a1 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/pyodbc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e7b2dc9abf0996bfe2e2a42f65604c7c13092cc8..8a5b7497047f2ee49503dbab488773c3804d754b 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/zxJDBC.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0bfc93747fcbc838c69adabc6a2d4f64b44845eb..3fb659d923493b4e48e6b243b526dc5b250addeb 100644 (file)
@@ -1,5 +1,5 @@
 # databases/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5653f5b659ca5d000219bbb4e20f4f13b0c43685..233ae0e0475d6023b0d4adc91c6714219584dd76 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f27bdc05bda52b94d7b5aa4bea1138bdef6c7b4f..8dd9d1185d0e83a89ed60b2fc43818954d93401d 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 15b3b9bcd3d589116481f25d1ba88ef54847f85b..ead6b31ac64e0b9d164af14124d0e352263552f3 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/base.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index aff8cff15fbdc053f636581acb4f3028b664074d..d590df78f959ecc1cf06329faa4b149460fac1f7 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/fdb.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a225a15be7b2fcf287a473fe0517565ef14912bf..b7c1563e34f9553b64b861c876771abf9e06ca84 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/kinterbasdb.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8c9e85862f8b78882c9fa623bc066740eca49fa1..6b70df3a853fec4bf98bb3368bee3959bd309359 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a85ce5a57f2e568b0f39a5f11ff73674bb8dc877..221bf505ddb364a2218ebe3ddd5d1ffd5db80b01 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/adodbapi.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a221072a7baeddf9a90cba81392fbafbdc24e95f..661c6ec19206fa2f36229f2639de889133cfa6ba 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/base.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e2c0a466cd9564267f566e73b294851bc918e1df..625479be7412d4c4afa778d11c8e7915e52f8a3b 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/information_schema.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5e20ed11b111ac8f01414a2e613df66bfb3fd20e..bfcbd2654d547810e28756b362330bc55ca1b34d 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/mxodbc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 380418b3347d6f12e54466546a5350a185398dfa..57ca8ab3d44b0d4f9b3410f26090ff02ebe6f09b 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/pymssql.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 04377c9086e9a3e6a2e0104bf8cfdd19cbec3447..c6368f9696fd724523ea009d90de8fad18df1a74 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/pyodbc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0bf68c2a219324bbd78cadae8f64f98522557eee..eaf5c96034004b735e6d93a51af6c69fa3240397 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/zxjdbc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fabd932e7b68b377a36716fc64afcf4901be9869..886fec3f7d272046afb874cf9dcc64e56f305f55 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d37885b8c82096f40a0a38e32df9cf501f31b829..a45cc90453b3ea4c8b9139fc605a16e2f65039aa 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/base.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 180986c9a485c8f0012f902586974f8159697b77..a5ddb1a9e89ebe79a2097233c59b8e5e5e4f2024 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/cymysql.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4e365884e6963d43d87f3c1d3d8c6dee680489b6..1c6482313377108ac98525f1a1cddd132aa50da4 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/gaerdbms.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5ec259c8657c37a75539aa708ca589f79febbff6..c3a12210ac0c10727498d5ed59e9fc329ac7e244 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/mysqlconnector.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7b2c57bf1d6d9033e8f29b4016767d994a4f5bec..e8a35b84d0432415efc7e753093561d338e176c5 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/mysqldb.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3612d9fe78134a9d1d339db47fd307e68d7a0251..f7f90e9473d82089eca1a34d6b4b53d614979092 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/oursql.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3c493fbfc25872cecd1cbf34b25b47b5ecda15e0..a9c942db07ec7b2a2f23f53ab50882a73589eea5 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/pymysql.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 882d3ea4e81dac7b74a606f5e9efcad6a1bb2ace..2ec6edf5c482212dcf729f5882aa19297e76be40 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/pyodbc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2d142b8c9f4e14e8d7f1e36e4ec9e6b818a38b8c..9c92be4e6b466ce3ddfbacbce9d48e489c002457 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/zxjdbc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0c5c3174bee7afbde853ba1993551893b69395f4..210fe501f527929a7bc886588d56f1defadaf233 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index dd44a49378f824a2bf3eecfb7ddcc398b9f87410..d59ee6271c518bf221c197ab106f2a4b08fc9ea3 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/base.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 08a01b649269b7855ac87b72f1d01961a2004caf..add35f24290c5ead2b8032bc756fe67ee8e497db 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/cx_oracle.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c3259feae03c13b8660841cf40d3c71b112e4ab2..c8a31f1c9edb40b5c316bf6bcff19e09b1594dcc 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/zxjdbc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 04d37a2e6e7d5180cc02cc81d6031b5f0af04e2b..d6299e52da124f43f0fa04f9eebe340372e7cb15 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgres.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 006afbdd9c7a793f1876f6c8dcae7bd8c35aa671..46066305737a4346f80e366082de9512bb0fa64d 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c78bc64145a4f6f5631caa997e0c949077dc47a2..0d9d557bfea55a290ed0dd16823b0f515815a196 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/base.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a6f52df18afe252ce6334f5af6965592aa5f0571..82a2d5de251de82901390a331b9350b36bd98981 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2013-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a4ff461866098a3c76abe2444bdfae51302af502..d39ee91828b5ae8c8041d0ab288d751de7ea5072 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/hstore.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f7ede85c9eacbf506c64e250941f68568485402b..575cab84f7a6861ab2d7944bf66de11cdaff2cb1 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/json.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 68e8e029dda4a49c6f7cd246ffeaa6e3ca098467..3a8ac17a2c24d8e4f5e63a08791df4e127b1beaa 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/pg8000.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors <see AUTHORS
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors <see AUTHORS
 # file>
 #
 # This module is part of SQLAlchemy and is released under
index 0614081090fc9afb4ff2573e525d99ad7cc9c322..5421a0a5ea934430177e648164e6668e4c5c767d 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/psycopg2.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ab99a8392fbbe0b385a0e85efb4a63d5d83d004f..e99389da4773030f2ec55b0f4fd88509fca2406c 100644 (file)
@@ -1,5 +1,5 @@
 # testing/engines.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f2b850a9ad27c26db031ded53de7f46f0793da93..ab7749322818e2b23ed3412dac073411dd1ca04b 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/pypostgresql.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 42a1cd4b17655ba1095dfd79aae00b07f138622b..86b3919e778fafb95e15f3ee6634cf3658f8b885 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2013-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cc464601b3d12c6deeefc2c650326b81485acdca..f3cfbb8e75c841835114f30654188eab197a147a 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/zxjdbc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a8dec300aa8f25f84c0bd4e6fdd2ca386322175d..a0ec025150d0242ef1298c447e9f8a53ffa660ee 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d98e254b541156a659f1b47ce91f3a66b5b25e44..50fbf06a5b102d40ede3578edbcb5f3345da84fd 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/base.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bbafc8d60cfd4a5cd879ca17544a3f7a76d9245f..c7eb9c1685d11c6c0a42b8c3f913a84df5fecc32 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/pysqlcipher.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e34a67dc8be47b9d020a42ef1499857f267b65b2..40a7cbb077e2a24a24dbc235ff9f6b88b386707e 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/pysqlite.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 18535edcb279a71553e628926a2d9e5c302e82ab..1e72790df00e78c99677ad394fa0d3788b6f229a 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1e38534fb0729cfb4e28fed59c053407d610d2e2..40ad3bd4e9fdc1bd316e9fbc2d367f573926932e 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/base.py
-# Copyright (C) 2010-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # get_select_precolumns(), limit_clause() implementation
 # copyright (C) 2007 Fisch Asset Management
index 60e6510a5bf3b48f9fdf31a57c32e1cdfce6c598..1e77edcf919328f74833ff80de7a1142059eed52 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/mxodbc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 348ca321d229cf22334aab24ba2bb345d4996f97..9690f497d34ff0e3c150ec6b8e7f13c8886e0a78 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/pyodbc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 41ca47fd37787dca9aa1130a837cde2399525a05..00a7ca335cff5c71724afe52a964e7230e58349d 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/pysybase.py
-# Copyright (C) 2010-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4c19c055e03585d1dc69941ba901b27a3736f38d..f3e40284faf9c2e4803cbc38b85f4696d2a44173 100644 (file)
@@ -1,5 +1,5 @@
 # engine/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d49e8ac705e515e86a3763ab09ca2b1a22db4ee0..8dc4ae74006c7fe9c794b7d37af1247ec858c7a5 100644 (file)
@@ -1,5 +1,5 @@
 # engine/base.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9798d132d470a4d6fd6d3dfa19f62bd1352fdc38..b2df598e113a2a2387d4c359d98442403f3ce1af 100644 (file)
@@ -1,5 +1,5 @@
 # engine/default.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e049ed061c275d4f47d08f2a51cc9770b2d1e914..fd33b27008eb97ec1110380f232b2f47d4e159f5 100644 (file)
@@ -1,5 +1,5 @@
 # engine/interfaces.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 52aa69c6bbd80e4b02cc5618a95c041903329d63..eb018578a8b7f86fb8be3552b4cac3c743ab4799 100644 (file)
@@ -1,5 +1,5 @@
 # engine/reflection.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3c77e7d126b84653d9db6988cb94cdb98e86e7c9..b60db3667c837be27e43896846327d9a812ca500 100644 (file)
@@ -1,5 +1,5 @@
 # engine/result.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2a018f8b16a5c967f852f8581a104fd32262008c..cbdb77b70a61adc6db125f314e2fc1cdeb3e81e0 100644 (file)
@@ -1,5 +1,5 @@
 # engine/strategies.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 505d1fadd08b9b7315c1df8ae5dcf5e252dc56ea..a22b59c1debcb54db3a1908778d27f112787c0bf 100644 (file)
@@ -1,5 +1,5 @@
 # engine/threadlocal.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fe8f8e50e5e023b7bf8f01489ce921aaf348fbf4..1a9aa98ef9500ab60ef4b3ec951aefe72df80eba 100644 (file)
@@ -1,5 +1,5 @@
 # engine/url.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d28d8709820aabb5acf804fb93d3f74de88336b7..831b63e89a2a9d29705b867b5f51fad5f9e2c5b7 100644 (file)
@@ -1,5 +1,5 @@
 # engine/util.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index dddb9242959fd33d03016386d422c52240f18548..5cd01a981a339d8f3bce774a9f53c48085a07633 100644 (file)
@@ -1,5 +1,5 @@
 # event/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0af48dff378cb6c83ffc492078f19e100dfa62ee..b24c8fe8edd71298625809b096a9b0144a649cf6 100644 (file)
@@ -1,5 +1,5 @@
 # event/api.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 14940136ab7c334bfa81bac634d7750493655f50..84ef097aa6ccce033c36adadbe7ea52792a478b0 100644 (file)
@@ -1,5 +1,5 @@
 # event/attr.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 81ef5d89c8d23fd134bf44322e02247275004dc1..82ef6a174e12bd8a78ac3e1c7f6ca535ea76f876 100644 (file)
@@ -1,5 +1,5 @@
 # event/base.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b359bf48ac9fc651073c7ed818a084a0fd31d080..1063606eaec8eeb5852223c932763e3d8e80ef7e 100644 (file)
@@ -1,5 +1,5 @@
 # event/legacy.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e1e9262b651fed228526cccc81f36452e6ff23b9..acccadf38f6d167314332db3c2f24f78330507fa 100644 (file)
@@ -1,5 +1,5 @@
 # event/registry.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d79d523efb28d7b5b19cd2f3177fcc50932e804f..508af6c186f7eb21f893c88cf6e8700d6ae2d4a5 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/events.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 27298422938b26a2c2f79a106b39cd748f84b192..ea21f9474ac5c1541899524b3f534ab5635f84fc 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/exc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1c8a59a18de5033a1fe0a9da15ee5f52c8b6933b..bb9ae58d21ca70d0629f25e9dbae858daf129f8a 100644 (file)
@@ -1,5 +1,5 @@
 # ext/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f1469f0901f4427b2cbed88eb59aebd03b2c88fe..6f570a1fa955154a069bf69cb3a4eb168de6890f 100644 (file)
@@ -1,5 +1,5 @@
 # ext/associationproxy.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a99332269e943d435ae0293704ec91d1923a8157..b7368f434f525d5dd98f6d2580d27310c0d1ab61 100644 (file)
@@ -1,5 +1,5 @@
 # ext/automap.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e435bd6da2036c72d77fb63c51e14a2de39d3721..3d965a97c64e6f62c5302ce1ab340be4a8d3d6ef 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/ext/baked.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3cf6a78a6aa7bd1a156263d700ced56be490de98..8cb96a6bb68b92401f8213458aac3d232695942d 100644 (file)
@@ -1,5 +1,5 @@
 # ext/compiler.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f96a40252cf9b81b26ce578187a6b21388a1194f..69c4f28e24498e9b448dbdb7a37ef3a000a2cdd0 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ff805ecaaaf650be90d82f06c4b6d49143de48bc..6e162ddb58f41f6c81b46cf72a030448ebebadad 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/api.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3404ce9f474e1376f4c53396d7c9b2b8a157d0b6..16cb05e9c2a7f6e5f63a85686116168c63156f6e 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/base.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0d62bd2a8a75be7a96d019b6723629bb25f422d5..b2c5bc58cbb36a9d9a3ad068676b6fbbf1f3938a 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/clsregistry.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 996e81fcab10d657618a80e4c12dce203da161b2..d20fbd4842c6ba1662bc1bafdee8b2b1bf0e070e 100644 (file)
@@ -1,5 +1,5 @@
 # ext/horizontal_shard.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 92b7facd7a4b2b2a55c678499fd826af1469a42d..98463af3272acf798ca865d020987de10078e9b0 100644 (file)
@@ -1,5 +1,5 @@
 # ext/hybrid.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 755d93cfad3d568d4867e6bf97c9c8129623b821..587c979ceed2c6908951de1ad6f097793bcbe419 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mutable.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d060a4f03f23f61bca43556478ade6599ad2a905..6b22aa6deb277012fc2017318da7b1395bf80d14 100644 (file)
@@ -1,5 +1,5 @@
 # ext/orderinglist.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 893f7be22793c82aeafc7458756289d02d6cecc9..2fbc62ec6663d89d6cb3da7a5575629f32c56f48 100644 (file)
@@ -1,5 +1,5 @@
 # ext/serializer.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5c16c45c92cb837a1d59f0223ba4ce32b1646dbd..4f6a5a04acbf42d2abc5ce3c698385579969240d 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/inspect.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 464ad9f7076ec9727e0af835e4a7324e3e3c70ea..33f3cf1c5907af76b14d90dfdac92a8083719368 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/interfaces.py
-# Copyright (C) 2007-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2007-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Copyright (C) 2007 Jason Kirtland jek@discorporate.us
 #
index b23de9014f772072575e7d1e806253e8593eab2d..279538a97f4a584d84c49071c4991d5a0a592b3f 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/log.py
-# Copyright (C) 2006-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2006-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Includes alterations by Vinay Sajip vinay_sajip@yahoo.co.uk
 #
index 12b5ff25a9d711845777f65147edb0872472b5e8..7a938e2329581d61f93c4db94b17002ca4b455e1 100644 (file)
@@ -1,5 +1,5 @@
 # orm/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e113a719121d9942850f65c2bd518e33d7924d4d..f19a052551942fdbc5a1c0b77079cc51c44fe5ea 100644 (file)
@@ -1,5 +1,5 @@
 # orm/attributes.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8d86fb24e20ff284b87bb3772113fa3ff24c1484..1ad56037d2c9b96f93546df9e42bed89cde8c2bd 100644 (file)
@@ -1,5 +1,5 @@
 # orm/base.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f3c609f154ea7bf1d9f297668abf304e87256d06..364cd8246769311ed6400fb77454e4021a4bca21 100644 (file)
@@ -1,5 +1,5 @@
 # orm/collections.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a3e5b12f90222e69f523d7e4a12a0ef473914838..a87ec566b229aef8e6e44ced3260028ed5021d00 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dependency.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6477e8291f8900c67904108d9d145a591ddc182c..c1bc2f954f6f91922a882a3c636dc05beb63f4dc 100644 (file)
@@ -1,5 +1,5 @@
 # orm/deprecated_interfaces.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d6817e8020741bfd0bffbeb0ee4d30d8144cdbd0..b6437cf1e3f129ca7d5c8d164d38821f95470043 100644 (file)
@@ -1,5 +1,5 @@
 # orm/descriptor_props.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 88187cdcf0cc18fce83965df1d0433b70cf6f001..2f3775b193ebd498b1d1ce81d3ee0284b4ce3abb 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dynamic.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6b5da12d99e4e8a91aafc18f13da33a2c5b28ad8..95a9e9b9153035a392c7051ee3c64705ece7c348 100644 (file)
@@ -1,5 +1,5 @@
 # orm/evaluator.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e4f238b01acde58dce7b50098b1b293a05e29614..e7d46c20b02a68a4d9762f5389b295c0cc64d836 100644 (file)
@@ -1,5 +1,5 @@
 # orm/events.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index db993220f53f2588bf3211da7dec839032fa091c..c13bb673bc255e2a865bb403be1d512e94c88431 100644 (file)
@@ -1,5 +1,5 @@
 # orm/exc.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5646732e8566f185bb08ba7b2019af82f6bca3ad..8e5f4dc264927d9a4a6dabc9728368461038b65e 100644 (file)
@@ -1,5 +1,5 @@
 # orm/identity.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d41ee59cb985630b8e9adcf386bb6f557341dd89..4ac9b13c6c51865488ea72e4d6a18874bf71644e 100644 (file)
@@ -1,5 +1,5 @@
 # orm/instrumentation.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 74fb1562247855228ee79688d73fc7ae96423028..75a3585fef412a3e6bc29afbe5a588764ab2fae7 100644 (file)
@@ -1,5 +1,5 @@
 # orm/interfaces.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6f73456a475200c425a07699217d5a3cd2172cde..82cd0077454dd15fc1da58279f236f1df31db373 100644 (file)
@@ -1,5 +1,5 @@
 # orm/loading.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4a1b12597db5a8ece0ffa1e22a023366ffaecce8..94c27aa0ef2fe25447080485d87e31f8330123ee 100644 (file)
@@ -1,5 +1,5 @@
 # orm/mapper.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cf184655556262320f7fe96b38600a3116cf2f49..0377f96195a3ad6f6a8238ffe63257b779ea3b73 100644 (file)
@@ -1,5 +1,5 @@
 # orm/path_registry.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7a27e093379775d6ff74c051d615bdd59ac90209..bc81b49b89fc040d2c1e0c737f4a0e85e7072a78 100644 (file)
@@ -1,5 +1,5 @@
 # orm/persistence.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 435f6ff7c3c53994a47a7409e1a07dd74fa16c91..e22e3adea2351c91ddb5a72fa16e9ec0366df640 100644 (file)
@@ -1,5 +1,5 @@
 # orm/properties.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 698dc50c91a1ed3a2a5f967bf0c59b5cbdb53dce..78cbebd9a346d48cdbe1148a83d79a0de8de7056 100644 (file)
@@ -1,5 +1,5 @@
 # orm/query.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c58dd98fb60eb201b3c5ff93be2abb50392a3a6b..8bfbf64915db16ec4db156bbdaf77c2b4ec260ce 100644 (file)
@@ -1,5 +1,5 @@
 # orm/relationships.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4f09d87fc58a7891d5796f4d3cb9504fee485f3d..05b881320c1087792cb7d0a4fd24e99c741fc085 100644 (file)
@@ -1,5 +1,5 @@
 # orm/scoping.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4c5291db3fd60423c3cb54290a82e61e475f633e..b9fd60e11ed3fd47ab0ef0fac8e2bb30e6d1dca0 100644 (file)
@@ -1,5 +1,5 @@
 # orm/session.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c66507d5a449a6b9d455d6dc45bbaff90c3db7ac..67e58bb536ed5d1787408d518c277cf875ca4c33 100644 (file)
@@ -1,5 +1,5 @@
 # orm/state.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 88b51d88ea55df95041e4c77094d0807c9661f38..55004c812ed16c1656380e0c6b534a9551359d2f 100644 (file)
@@ -1,5 +1,5 @@
 # orm/strategies.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f13dbe7b5536a1c9c854602479afee1fa5f78f6b..c025cea3c8ba7a379d6298c1ef5b333fd8d62102 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ccca50871a233c090b09ca2afc8a449a524ac452..880428b46df0dfe06db07c68adc930f754b78a2f 100644 (file)
@@ -1,5 +1,5 @@
 # orm/sync.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8b4ae64bb0c608aeef6e44c5078533838754e59d..2a662f6a0ce072826904c9199d4f855b6b2bb017 100644 (file)
@@ -1,5 +1,5 @@
 # orm/unitofwork.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2f829b0441331137236f61c209938b85a71e24b2..920ce3abe9d11514ca7725f7616cee8f4523e538 100644 (file)
@@ -1,5 +1,5 @@
 # orm/util.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 36f773d9f6a3d4dd7ad6456f1e4c291a26b14129..7cd2c3d0ddc6d89f4c0821697cf0bdd86a54b4e5 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/pool.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 421ddf73575269d59f7fd0cae9016b2602dededa..1ea8e201af4df8353a1f8e9ac62cf35c1928c749 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/processors.py
-# Copyright (C) 2010-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Copyright (C) 2010 Gaetan de Menten gdementen@gmail.com
 #
index bd0cbe54e6908f926110a46bfdd671c6b26a3fd0..9924a675f1d84bdf62d05b879ef8a5d60649d901 100644 (file)
@@ -1,5 +1,5 @@
 # schema.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index eb305a83ad2b7d62b9de3912958b605665abc574..79a668c566329c84fc51d0f1b675cf33a26dc7a6 100644 (file)
@@ -1,5 +1,5 @@
 # sql/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6ad25abaaba1101ba67b512068700368d8ffb76a..834c93912ffc9a193520a4397d92a8ef42b7d7ec 100644 (file)
@@ -1,5 +1,5 @@
 # sql/annotation.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cf7dcfd310e2157c4dd76084cd62078e54409fdb..980b03aa10a40fe348f16949d550094547528575 100644 (file)
@@ -1,5 +1,5 @@
 # sql/base.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 95d724f94313f5db004f9b5cae4a01d7ac88f9a8..3862f325b6e500306a8cb9e67397beaa9f033d51 100644 (file)
@@ -1,5 +1,5 @@
 # sql/compiler.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ec5e0c5bee00a9bc60bd914f9041218638bcf92f..cbdf27d36c5edb34ee2dac4989f7f6a0d984cd99 100644 (file)
@@ -1,5 +1,5 @@
 # sql/crud.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5dd521f8fa6055b61ddd902983f2d25ce35100ec..3f1bc0cbb2facc0e6672c07d297ebb4dbd0116f9 100644 (file)
@@ -1,5 +1,5 @@
 # sql/ddl.py
-# Copyright (C) 2009-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2009-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 51a05387e9743e62adfade5d92e80dfa2b9d6655..35dcbd4c148fadb8e7c15a584fcfde578f3aad73 100644 (file)
@@ -1,5 +1,5 @@
 # sql/default_comparator.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 76ae8b40019ecc9d22c58b22b80e0dc21206391c..c23b8907beec73598725bf36219c37419004e48f 100644 (file)
@@ -1,5 +1,5 @@
 # sql/dml.py
-# Copyright (C) 2009-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2009-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2cbe67fcebf775336a940dbcf479e90077345fd3..37096b21757f0ea9c9a5fd6bfd56648d77dbb60c 100644 (file)
@@ -1,5 +1,5 @@
 # sql/elements.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 832779cae46e41f821cb4a839b9fe7df0656097b..1cb27576ed235eefb0a5d7813b06d6decc74cc64 100644 (file)
@@ -1,5 +1,5 @@
 # sql/expression.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f77b0f02fefa298f00bc0ce3e92541bfdbebc23b..02680c742943ab9ed1765836de680f833ea46800 100644 (file)
@@ -1,5 +1,5 @@
 # sql/functions.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2a1a832a42beee3b1ebca12cf0e766851e898a18..d93c916f6d6a893b66addb60bafcceae9b64b45e 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/naming.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b645a0df1493e6b42b9c699b7448984d382b4c16..20f78c2e82b7e5293411cc76987f2dcf42867d42 100644 (file)
@@ -1,5 +1,5 @@
 # sql/operators.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 28f1ccf88f3e7c700e31af5daa9b16e5b44b0b65..b721be7c8deea7ce9100d4e61cdfd0267779485e 100644 (file)
@@ -1,5 +1,5 @@
 # sql/schema.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1abfd6de7e544642ef3058bc96d87372781cf961..edc70c8268639e515e03a41aae38ec9f61eee5d5 100644 (file)
@@ -1,5 +1,5 @@
 # sql/selectable.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3f9efc802af4f0983dfc7cd3eb70e9b589261035..28c36d3df49a82edaebe03fa859fc935c48b0464 100644 (file)
@@ -1,5 +1,5 @@
 # sql/sqltypes.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b27436d6a84d2ac6512342e88d2b702315f7369c..4c181b7c5001b6f9228c52afdddc5fa01daa3a12 100644 (file)
@@ -1,5 +1,5 @@
 # sql/types_api.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a8d803bda18c3414d50acb842a3e0923c7680b9b..0fe44a4d53d5c8a572a1fd3e97e8af337a71ae6c 100644 (file)
@@ -1,5 +1,5 @@
 # sql/util.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d12213e3539f3ba85c4864cb28e5f7af8d8b0c50..7f09518246b9c9e4b30a4f4157850bf684ade2f5 100644 (file)
@@ -1,5 +1,5 @@
 # sql/visitors.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c002fcb1e95af0fa4f992016966c49e1b9524cc2..98bd52ce9223de59c3ab385df0ee0ed12afec88a 100644 (file)
@@ -1,5 +1,5 @@
 # testing/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index dc90bc42debf35bb1880c7e8511340170cfe9257..db6d8e55f5c3dcc5f390cb147604d2629ea3914d 100644 (file)
@@ -1,5 +1,5 @@
 # testing/assertions.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 10f7ca754f1a1d02de676f1ca145e722d7308673..9c92e37a9ee736728e4c90d573a67dfbb3f4604c 100644 (file)
@@ -1,5 +1,5 @@
 # testing/assertsql.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index da5997661ece7a25e18eb1d3dadcd5cfdd422db6..592f333c24d834247817e8e350f1d8f5475b78b0 100644 (file)
@@ -1,5 +1,5 @@
 # testing/config.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index def9f3c140ca352c3297083f205498d58c1d88e2..6bca75fb1f835b9ce785bb73069210bcf2b186b5 100644 (file)
@@ -1,5 +1,5 @@
 # testing/engines.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a5d04decca6ae328a52a2d3c2c6b7233295ed363..ebd9fb5dacaeff111454f9e96f067031abf9ce00 100644 (file)
@@ -1,5 +1,5 @@
 # testing/entities.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 11c9e1b0baeeaca0578d2868c25561749dc8029d..992309e0388025951cb85caff81f9e742d16d9d3 100644 (file)
@@ -1,5 +1,5 @@
 # testing/exclusions.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d6712b46154d31ca8ffe10b58d6579d4497bc537..8cd6e9f9ebc629f115b102b292bb18b83bb2cbb6 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 674f0851acff73a70d972d5c7885aaab85ed75e4..05291ec0ea1687a98ebe3341df3e549bdf895f74 100644 (file)
@@ -1,5 +1,5 @@
 # testing/mock.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d6814a13af9c0e92737398b5098d35a0437f3d4d..c3ba828b084c4665a40d3c8fb44220d3e4700d73 100644 (file)
@@ -1,5 +1,5 @@
 # testing/pickleable.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9fc5848fbe62edea1f6fd11bd4778a50a772841e..2cf95d8d85251e2412a806e2ff697db35a5d18e8 100644 (file)
@@ -1,5 +1,5 @@
 # plugin/noseplugin.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cbe9f08dec4ff60223f84ecee199fa82fd88052c..70d8ad5f77ea6935779e47887b97c99b65743b89 100644 (file)
@@ -1,5 +1,5 @@
 # plugin/plugin_base.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a88cd21ad2896800bf51880eada3d826b9c0cf0b..62cdaef5a568ebd01784ee75bb08fe806e6563bf 100644 (file)
@@ -1,5 +1,5 @@
 # testing/profiling.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5d31c4d6fa8a3073f4b3ab9f3256b8bc5a60b98c..f5fbe75930586cca95f90e66b5d785cb92697e58 100644 (file)
@@ -1,5 +1,5 @@
 # testing/requirements.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b58aa019db4646ced73325eb92b9c38fac164eb1..75019d78528b10a17574c52a2eb503b891639408 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 # testing/runner.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2cd6e4cd2f7738f4d590ddf694d4b9e20756cc10..c0b373247ce7892f496e29536d9bce32052401c7 100644 (file)
@@ -1,5 +1,5 @@
 # testing/schema.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 754e2ad923f9f44abd02885ac37874dbf22fadc8..8f91f31ed38dd47dcc1e8ef05071b1f763c76c67 100644 (file)
@@ -1,5 +1,5 @@
 # testing/util.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9bf061514a468d01414d8f49cc5254f46465f07f..3d1c098868c5a227d4cf2baba8d8392cbbf16201 100644 (file)
@@ -1,5 +1,5 @@
 # testing/warnings.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 44ed696d602525cf1da35592efcc2aa94e5f6982..26791c10503f6dddfaf584b58cb5c05e4db735c4 100644 (file)
@@ -1,5 +1,5 @@
 # types.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8dcec48c3ac0108839d2e22a592ee74b58cfc7ad..202dd4865f7a2d313f74a194a4a0e85362e5153f 100644 (file)
@@ -1,5 +1,5 @@
 # util/__init__.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index be5d1be442d242ee59a4b465e2792ce6e8e2682d..e3e1d71dcf64817239f419633fb8c9812eb6c1ff 100644 (file)
@@ -1,5 +1,5 @@
 # util/_collections.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3503c655cfe9dd9b98b034755f7938024ee92280..5c615b0bc9a1495a0fdc63d114e2aa71d275025d 100644 (file)
@@ -1,5 +1,5 @@
 # util/compat.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 12fa63602abfc11a2bcaa84ea60a75fe4ab2aac3..4da3d45cb14e6c7b88e105444e9b6a3cc7a63206 100644 (file)
@@ -1,5 +1,5 @@
 # util/deprecations.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8e7965ffcc8844a70c267323b8219f18862c42be..fa826e48ba0745b34234433203fb473a1c3a7d05 100644 (file)
@@ -1,5 +1,5 @@
 # util/langhelpers.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 221347158b01866eee70c0acc6e7813cdd52caf4..fc13f2b857b6eec1da98d58a44ce2b45e67ed5c6 100644 (file)
@@ -1,5 +1,5 @@
 # util/queue.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5c5c54c53bdbce905d9dc004c7504b49c7f2dfe5..18476fc491b8433b57d74be50443ed89354dd312 100644 (file)
@@ -1,5 +1,5 @@
 # util/topological.py
-# Copyright (C) 2005-2016 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2017 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under