]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- copyright 2015
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 10 Mar 2015 19:24:28 +0000 (15:24 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 10 Mar 2015 19:24:28 +0000 (15:24 -0400)
170 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/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/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 4a8757fda270f2037e726d7551fd1139bd089cbc..0208c3f5797a10a06a64d8d10d9da7fe2e7bb4fa 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-2014 the SQLAlchemy authors and contributors <see AUTHORS file>. 
+Copyright (c) 2005-2015 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 22b377fa17627d759cbd7d8fab2afab046cc0700..76b49ec9b78bf0a591f933732de387ac4d296b7a 100644 (file)
@@ -97,7 +97,7 @@ master_doc = 'contents'
 
 # General information about the project.
 project = u'SQLAlchemy'
-copyright = u'2007-2014, the SQLAlchemy authors and contributors'
+copyright = u'2007-2015, 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
@@ -307,7 +307,7 @@ man_pages = [
 epub_title = u'SQLAlchemy'
 epub_author = u'SQLAlchemy authors'
 epub_publisher = u'SQLAlchemy authors'
-epub_copyright = u'2007-2014, SQLAlchemy authors'
+epub_copyright = u'2007-2015, SQLAlchemy authors'
 
 # The language of the text. It defaults to the language option
 # or en if the language is not set.
index 659ce6c7433b50b4826bcff1ee101c0e9ebb7018..50ca03ae803bb992fd10524ac08e7d7f160942f8 100644 (file)
@@ -6,7 +6,7 @@ Appendix:  Copyright
 
 This is the MIT license: `<http://www.opensource.org/licenses/mit-license.php>`_
 
-Copyright (c) 2005-2014 Michael Bayer and contributors. 
+Copyright (c) 2005-2015 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 d184e1fbf5bdce4f7d4db39681cd905df2a4c69a..c3060b3844ba5daa4fc6e0aea107a0f54dda18bf 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d568177634daaec5525a0a141113a480802ab89b..59eb2648cad13b611ce98b90f92e3a872f5ace78 100644 (file)
@@ -1,6 +1,6 @@
 /*
 processors.c
-Copyright (C) 2010-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+Copyright (C) 2010-2015 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 218c7b80763d8b7e084d53f7684ea21e5a1caa34..ae2a059cf04ea71b0a1f85e19389618d9590966c 100644 (file)
@@ -1,6 +1,6 @@
 /*
 resultproxy.c
-Copyright (C) 2010-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+Copyright (C) 2010-2015 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 377ba8a8d6bf3481e56eb7865e35ea032d5698f8..6e00eb816e103ec62d6c2d90ff63fb15a97b1a97 100644 (file)
@@ -1,6 +1,6 @@
 /*
 utils.c
-Copyright (C) 2012-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+Copyright (C) 2012-2015 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 9253a21d537affae19548429adf446e360bbf1b7..5f65b9306211d0e6d0fa47fd4a6739d5e9c6aeb2 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 851dc11e84b8d0698e0bb83aa6ca2d46c7c3f41a..1bbf899c4c0d85fc0ba593336d1859672be71750 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/mxodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 907e4d35348cb12991c2a17aa3999631d7e9bbcf..84bc92beef0e15d5328e43813edfc361991ef8b4 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/pyodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c0af742facdeed51ee91176040ab80b7c23dbf90..8219a06eb255beab83b3be994ab65c1d37a4ef51 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/zxJDBC.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 356fbec59690d65928d8c1654029548e892a48af..321ff999b2eb49a096b932f4b6929fea5224f0ef 100644 (file)
@@ -1,5 +1,5 @@
 # databases/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 74c48820d88ec3a0be8893299a24d1ec9896fe27..d90a838099f8d14791ad1cc866d82cea847f7858 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9e8a88245fd03eeeecf056b88a6c71cedb8a028a..b2fb57a632e221f26578a30b72c421d9fc94876c 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 74e8abfc26e4237bcdadf11effd2a180284b704b..61d3646b10723638ec3ce823790c5a4fede8fe4f 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ddffc80f5de6de1ea4e91aaf348f65cce027900d..0ab07498bfe6cbd13df1fe3dc89629d2cea5ec2a 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/fdb.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6bd7887f7d5538a1c395b54b37018d15fd26ad3e..7d1a834b8658eee9aa2424d518a2cae62f83a483 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/kinterbasdb.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d0047765edd8fc3dc8f59d45ff673c3d42c4ece8..898b40cd53e1daae2956fdcc75188617f54683c3 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e9927f8ed0a4d1522d9b39ceee966b7b9a9fba8e..6e3f348fc3c09bb4c1d076a6960d3eda9159764b 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/adodbapi.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3d531fe721f45a7788c738e1e2b9c4d0e6769486..ea0ed58a444798786d732ecec45a81f0242671ab 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 371a1edcc1dea4a69ff2473e929e44f715935b78..a6faa7bca81c7dfc9b646168802b0b231cda3597 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/information_schema.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ffe38d8dd7482ca9ebf74785c6e9b722df170f02..ac87c67a9fae1b11aacacaf27e8e85d27050ea2b 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/mxodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b5a1bc5666f6678b1bc37599b8b6fc2bb264765c..2214d18d1425c5010803118a9fcc0a38e2fc1b11 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/pymssql.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 445584d2497c03fcf90f40293d7006799b4b70fe..ad1e7ae379634e2573fd72f8f2d974dabb683dc3 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/pyodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b23a010e7d6f229d6cdc76ce7d1883e8b5869afd..2b8d3ff713ce75bc8c9e6e59fa2b8acb5cd3b38f 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/zxjdbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 498603cf7052d1822dc1b3e1875a07da68856043..c1f78bd1d4010220f74da9e478cf6c2e4b45a719 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0d2c361897cbab2de42e1344681d12024925f93d..b770569d055bba8802410b478efcb841981209e5 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 51b63044e5a105c6596b598263b492e739e879cb..6d8466ab1d82adf35ea6538e6357b3087597b95c 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/cymysql.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 284b51bde3b9fb0e9c96d9cba3492d759b7176b9..bbb6a9868f817502553535653de26e17dc644871 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/gaerdbms.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 417e1ad6f008e91e15b4f9ee864a1e584e4a0fb8..7a57705af10322be4c0465c7ebb4ec978ad2d0b8 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/mysqlconnector.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 929317467432e669cec403476f9f53650a4fdbc6..0d125a24515aff969d29cffbda4a1a476967eac5 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/mysqldb.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fa127f3b0f835bae938316b2293c663eb63a993b..ab6585abd050dad59c7298344f605f61b0de0379 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/oursql.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8df2ba03fd8ed1dffae772a4b371dd4b2fb03f60..ab7519d4cc13b7123c2e8a9f64be82f5190a5808 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/pymysql.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 58e8b30fed4d76b2b628bda375e27cae3fb79012..08b33929959b19673c4c62d304df32b7d23f1c3e 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/pyodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0cf92cd13b3e0ae3d65a6006b56abfbbfd0a02b1..9db969160482ea20d14171ab48a94318c5a125be 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/zxjdbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fd32f22358020e73672738a3e2ee62cc04890e94..b055b0b166de4a4e710491b90c7610ef8f62b2d2 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 33bb443eef3f8170136a7082e17243f6ba7eea6c..f20c2f2965a2eac169d54d16dae0dbfa13ce4ab4 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6fc88da8eda4675284e59c754182cf4a45dcad06..4aed45c14697374daa146522d4a8fe8e2be96fd3 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/cx_oracle.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 82c8e2f0fc1c9d7ee74a74a082590e6fdb2315bb..3025212b6840f522ae5bea78d88da57bae0cda28 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/zxjdbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f813e000308ce8a2354101f9bfec97e9f196bcbc..3335333e5d336fa9f30d5dbc64f0c817e675c2b5 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgres.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 01a84631427ac08cf4d3dd15281d5eda9718ed81..98fe6f085466d4a32611809e1eaa34aa7a7bac7b 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5899bb411815dbfdfa1e0181bd5ba1533b65b4a9..8e18ca7e4bdc91525c55238dc02b92dd7528e17c 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e8ebc75ddb8208c81380265ca03821f393770ff0..0371daf3d7428619c25654ed64c406773c180b84 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2013-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9601edc41ce4ac8b2daf08679d177690072d8738..9f369cb5bd0d985fec02ce3d501b7f790c99182d 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/hstore.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f38c4a56a23b6fa64f1d7e318834f05e921b97ce..13ebc4afec6929a5eb3d31f7b9ac1bc6329727c3 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/json.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4bb376a963cd2b3947382b772ffa2270397b940e..c71f689a3dd0707dc6ae79b98f7ceca96d6278cd 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/pg8000.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors <see AUTHORS
 # file>
 #
 # This module is part of SQLAlchemy and is released under
index 4f1e04f20f610d85e048f69f5d573207522f332a..46228ac158588b10b677fed5a0311799a66c8c4d 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/psycopg2.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3ebd0135f083b8ef12b185324f74217d6aee622c..00c67d1707311078a8e3fd87660eb3170d53072c 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/pypostgresql.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 28f80d000c70d90c59364228dcac8d88f503170c..59c35c8719bdb41d671fa2e3bd874372013c6db9 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2013-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2013-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 00b428f8417481ed4cc9692dc20f294aee315d19..1b542152c7e459d886cfbec185c90927ab1a41d5 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/zxjdbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a53d53e9d17e8479582cdda2018baaa6c4c09d62..608630a2520f76bd0ab306fb6a7d95c3a9e63b0a 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4fd22caca693b416148a0d698d9aad2b9cbd79e0..0f32395e5803e5ca7794049f2c47badd53f0ce6f 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3c55a1de7712bcaa02e50b8351ed621a715cd896..9166e36bc39597938e58fa29f6d970562a871c6e 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/pysqlcipher.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 62c19d14597f7f2a3bad4ba4481560032457ed38..e1c443477f34438b3d9034cdc8200b5b62318918 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/pysqlite.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index eb313592b664682550b6af179a4c176da009ca30..0c55de1d60e89af1f3dad82788c5f22fe3a6e690 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 369420358cc890fbcfa7c46c86bb51900a30a253..34d896347bac35c51e7c1e803244b9fa3b2b2839 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/base.py
-# Copyright (C) 2010-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # get_select_precolumns(), limit_clause() implementation
 # copyright (C) 2007 Fisch Asset Management
index 373bea05d49afa5c08886a771fd4930e05240f01..240b634d495a018f79c62db1ccadfb6b52a6c5e6 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/mxodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cb76d1379812440adebed3a2d9a7f94b705f1bf0..16899707445855a6fd7ae12f79573f6546e8a05c 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/pyodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6843eb480d3d2911b9fa9aa3e51a43abdb0409b8..a307394448b33ab564efdf730c6076b382b67f85 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/pysybase.py
-# Copyright (C) 2010-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7a14cdfb58f2889dd331fe00e52d30ee913c056b..0678dd201cbc1cd1ef90ceb601b3010a1b577652 100644 (file)
@@ -1,5 +1,5 @@
 # engine/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 067d32538a39f75da1f74870df6cdd1a65a7276f..6be44631383061ec7a4ba0ec57ea2bceddd08c46 100644 (file)
@@ -1,5 +1,5 @@
 # engine/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bdd9d2715c8b8b070490172737855f49c6723f16..b46acb650963ebfbafbba0f6c79020f8315613ad 100644 (file)
@@ -1,5 +1,5 @@
 # engine/default.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5f0d74328fe098c33ecbdcdbd58f68736cd442da..da8fa81eb4309c9a92d1fbf01a578a0fc8499b7b 100644 (file)
@@ -1,5 +1,5 @@
 # engine/interfaces.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6e102aad6be451eb1b9984704a3203eea7053390..59eed51ecc2f0a76209edfb4d947202a0c1009bc 100644 (file)
@@ -1,5 +1,5 @@
 # engine/reflection.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 893cd2a305ac76404c3fc329a5215406b82c5253..3c31ae1ea49130a6db965d89f48a213378771031 100644 (file)
@@ -1,5 +1,5 @@
 # engine/result.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fd665ad0327e2586607210d38ecfbf70386687f8..1fd105d679b407bcc3a1448e5cdd918d4e567f78 100644 (file)
@@ -1,5 +1,5 @@
 # engine/strategies.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e64ab09f4c19a821c880cdebd2160d8f9cb3b0cd..0d6e1c0f11a07b4b6fb01afd54edf7053b8043ec 100644 (file)
@@ -1,5 +1,5 @@
 # engine/threadlocal.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6544cfbf3e0cf2be04147e61ceea18e4cea94391..d045961dd63889044499ad0035a3ded2df6ac536 100644 (file)
@@ -1,5 +1,5 @@
 # engine/url.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d9eb1df10890dbb588d08ad930e383cea7b53701..3734c99601d71b5ee3fab32e291bfd65aabf0bbe 100644 (file)
@@ -1,5 +1,5 @@
 # engine/util.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b93c0ef85950a45440530d072431cdf768b6dc13..c9bdb9a0e20287819d4607edfc7d7f336d4988b8 100644 (file)
@@ -1,5 +1,5 @@
 # event/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b3d79bcf4e5f5c4b16e5963a1bb12678636afad3..86ef094d68e492a89ed343a450801b4179e0ee97 100644 (file)
@@ -1,5 +1,5 @@
 # event/api.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ed1dca64417a092e4a286951c15bab70f4cf8d4b..a64c7d08d261e2d86550ba7639b68d92216b7058 100644 (file)
@@ -1,5 +1,5 @@
 # event/attr.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2d546888633b60446c51e1f7f58fb3be8ab3b8e3..1fe83eea2445815736ad7439668497f049805ebb 100644 (file)
@@ -1,5 +1,5 @@
 # event/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7513c7d4d0b3422a429a3ac5c5d55d93976bdb1c..daa74226f09cdade5c2787c49de1b9c3ba2887f8 100644 (file)
@@ -1,5 +1,5 @@
 # event/legacy.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ebc0e6d1823800499a76c8842157b5a46595a49d..a6eabb2ffab1952bdc97dc5d51619786602e32f1 100644 (file)
@@ -1,5 +1,5 @@
 # event/registry.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8600c20f52711b2e97bd3bf52a1843458fcad078..22e066c88f386f4e00a2819f884f1720547998d3 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/events.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d6355a212b2d9ae359122b07e4dc4b1c0d3eb044..c0d51382ddba6151f2128a5b9e27e6733ce96e70 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/exc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d213a0d30de49eb68e0c4ff04f921a5798b4549d..ff95c07d68d126d64a20365c0e397fddd8b58601 100644 (file)
@@ -1,5 +1,5 @@
 # ext/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c0e71068bf8f8f51aef299b513ac41551a8358d5..a741419735824082587df67d54519ee85ca5ec35 100644 (file)
@@ -1,5 +1,5 @@
 # ext/associationproxy.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c11795d37267cb10152b3945c70898be66842ef3..ca550ded64ca3c57fe6b7de145f1ceaa3c51ebf7 100644 (file)
@@ -1,5 +1,5 @@
 # ext/automap.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8d169aa57daba40e78003dd6a36ed6ec9e9fb767..9717e41c01285e047a6397147311e7763e503854 100644 (file)
@@ -1,5 +1,5 @@
 # ext/compiler.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cbde6f9d2591942f546a93bb443344cbb4fcf294..ff306d60c6b7971c72b6b111b20ea88fcee0c752 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 66fe05fd0e868874565375de9ae064d181479cac..048533b92cf67dc59b50f57ac632a248b24d7070 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/api.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d192573667aa80a32c8d1eb42338dac4ce7465e7..e35ae085a185c6e30bd41dcce8a38497b3be8ddb 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d2a09d823ef7fbab57284e5e1103eff2a047c0a1..c3887d6cf1cc0d09b56afe231a42a025bd659961 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/clsregistry.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d311fb2d4641a471d8e71186cb9a96ddb846805e..c9fb0b04494987772e40390dc407abc502618963 100644 (file)
@@ -1,5 +1,5 @@
 # ext/horizontal_shard.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f72de60992f1d104186ce47063fc5d5cf6e632b1..f94c2079eec1f5adf4e793827d4977824afbe282 100644 (file)
@@ -1,5 +1,5 @@
 # ext/hybrid.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e49e9ea8b5b076cd212ea2aa0880933b6851a8d1..24fc37a42111465bde0473ba1fc5a4e624a2e313 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mutable.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 61155731c25d498b2895735e5315cabcf11bd376..ac31c7cf7795686f66fb8f25851bcffcbb5c99aa 100644 (file)
@@ -1,5 +1,5 @@
 # ext/orderinglist.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bf8d67d8e1c83c5242a280eec51b3eab24df2591..555f3760b2014ffdaa08980ba72098fb08c3b649 100644 (file)
@@ -1,5 +1,5 @@
 # ext/serializer.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ab9f2ae384b2dff1aa5de1917d5d068980419b0f..a4738cc61b58dc0d43f1d524791fca76bd9c6953 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/inspect.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ae11d1930585d1c59c7d7885c9dedd615de01c12..717e99b5e9ba33aeb9035d31bfc573cab7f6fb5c 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/interfaces.py
-# Copyright (C) 2007-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2007-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Copyright (C) 2007 Jason Kirtland jek@discorporate.us
 #
index b3c9ae024bc68f0b11f4feff59486170b406d538..c23412e383973083f3b79a23eb591b5fb3034cd8 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/log.py
-# Copyright (C) 2006-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2006-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Includes alterations by Vinay Sajip vinay_sajip@yahoo.co.uk
 #
index 741e79b9da19839f6c13de15984a49bcec883444..e02a271e32647ebcb2a73b03f5f59e143565108c 100644 (file)
@@ -1,5 +1,5 @@
 # orm/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a5af4e8ba9c13de828cce966c344128514d4ff1b..41803c8bfbfa7eaaed6b15bc26585478b8b70f70 100644 (file)
@@ -1,5 +1,5 @@
 # orm/attributes.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c3f95fa1099e49e43b00bf9112220f8d7848f33a..01981f26f9a490916ee76b680932299a806b18aa 100644 (file)
@@ -1,5 +1,5 @@
 # orm/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e50d81b777cd773808eb246bc1bfff96e03149eb..4f988a8d437ea2617f874c29c5f73a5026dfb4f6 100644 (file)
@@ -1,5 +1,5 @@
 # orm/collections.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d10a3839410e841359f101ca6f307556f622a19f..d8989939b6e0814826c50e5de310447d4e0334c2 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dependency.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2755823233d371cb30bb4204192a3c1027d9c5d0..bb6d185d4ced8829fdf5ac532cd0b0ce7634744c 100644 (file)
@@ -1,5 +1,5 @@
 # orm/deprecated_interfaces.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e68ff1bea69be5fa5bf2c15025dbdea0f1a04282..17c2d28ce35916e0aa9c700687c1ec079c54e0f7 100644 (file)
@@ -1,5 +1,5 @@
 # orm/descriptor_props.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a4ccfe417f4cfdf4d4adabe33b8b389ac232fb35..aedd863f88049cf1acbe3b4b6e15076d23570970 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dynamic.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2026e5d0ab2edb4aa36b704a5e0d5624288b0532..1e828ff86fe02ba40379a1a91e4f3950c22d3d82 100644 (file)
@@ -1,5 +1,5 @@
 # orm/evaluator.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4d888a3507d88d83c249f2a5191532c4c2d2e8a9..7e23248b5ada7da423b39282e9388ba16b85ccab 100644 (file)
@@ -1,5 +1,5 @@
 # orm/events.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ff0ece4110f3e61b1b0c08bde954cb61d9d00551..e010a295d51332a4cab26881280c633a6fafa382 100644 (file)
@@ -1,5 +1,5 @@
 # orm/exc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7690109504aee1713273240740853942a0e3dec1..46be2b7196c09581a4c189e9f3810a5701f84aa4 100644 (file)
@@ -1,5 +1,5 @@
 # orm/identity.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 78a573cfd32337f62bb7561ca403835df7319139..be2fe91c2cc81b6e0f08f5e87cd1ef33d6731c94 100644 (file)
@@ -1,5 +1,5 @@
 # orm/instrumentation.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cd9fa150ea2b88405e70178c0ae53889b52860e0..39bc53adb85082a9fa0b88ed7be45cc9574a0b1e 100644 (file)
@@ -1,5 +1,5 @@
 # orm/interfaces.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 64c7e171c944fe1082f6854ff7ef4d55a688c125..50afaf6012bc3d371ad4622c9ba1a427c7fc819b 100644 (file)
@@ -1,5 +1,5 @@
 # orm/loading.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index df67ff147231c72d3eeb7afeceed26003d0cd283..4554f78f9d1404b041df38aca75a2dc232b011d8 100644 (file)
@@ -1,5 +1,5 @@
 # orm/mapper.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ec80c70cc454be0764d31f55848c234e190828b6..9670a07fb220a5c36fa87607db1b644c90b7dc81 100644 (file)
@@ -1,5 +1,5 @@
 # orm/path_registry.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c3b2d7bcbbb77e1ca3dd255aeb5fdd1a6586847f..c5df63dfda077c6ac66f8251a7b3c8ab59724fce 100644 (file)
@@ -1,5 +1,5 @@
 # orm/persistence.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 31e9c7f3f72ef612be5b447cd122582f6ca097fc..238ac83a9c9bd089840fc67973e60e25c2c194d0 100644 (file)
@@ -1,5 +1,5 @@
 # orm/properties.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 630be4a1aa676052e0be6b474cb084ad4d072d69..9792b4e8857dd9a0165e0b2cd8ccad51962d05d2 100644 (file)
@@ -1,5 +1,5 @@
 # orm/query.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 77a73e1f16013f62b527d1482c904aaddcd6d19d..afd524f7b3e81c75db17b38a9b135fb412d1fb00 100644 (file)
@@ -1,5 +1,5 @@
 # orm/relationships.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 71648d1262a671bad899f39a6661b17890153e07..b3f2fa5db4986ebc72fa45442518bf4b4b65dd19 100644 (file)
@@ -1,5 +1,5 @@
 # orm/scoping.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6dc6d3755c54b6452f57324703a274b0e33e79f3..f02d8b54efe1d7230e44fcaffced3437cfe7f645 100644 (file)
@@ -1,5 +1,5 @@
 # orm/session.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7691c9826c7a5bc449f27a366d953eaf369e273e..6034e74de082892cb551a5d11344d36707c4ff69 100644 (file)
@@ -1,5 +1,5 @@
 # orm/state.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a0b9bd31efdf6f8bb5958fcfa0967761cca33570..25a27885bfd98626669cd4f1c69d1989c75b25d1 100644 (file)
@@ -1,5 +1,5 @@
 # orm/strategies.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 90e4e96613008373f56396aaa4af7009b551b2ac..cb7a5fef74ed7c2f0e23f654fcc88c1bbf18b66c 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 671c7c06768d416a661d83f0d6e22f0f3ca7cfd2..e9a745cc085f00681ba7227983dfa55cd971c36d 100644 (file)
@@ -1,5 +1,5 @@
 # orm/sync.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 05265b13fbfbcbe27b2445f67edd0d87e70b7ba5..1ef0d24ca2259a9dd8863d7d970576e42109042e 100644 (file)
@@ -1,5 +1,5 @@
 # orm/unitofwork.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ee629b0343f5901d117a99d6c4cee83c92c6a8a7..9787b0fb43317f369bd4d748d4ab5dd82cb4e17c 100644 (file)
@@ -1,5 +1,5 @@
 # orm/util.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 25db5d5ba1dd002bce58e705dbb2bac7e1dbfa8e..ccb4f1e6a4e60cb739c4636037cd0013f7e974dc 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/pool.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3794b01f5892708047159c5ed7c965309864d9fa..6575fad17d519d279e4cfd107f512d188a704542 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/processors.py
-# Copyright (C) 2010-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Copyright (C) 2010 Gaetan de Menten gdementen@gmail.com
 #
index 285ae579fb745941288d57a6e7c0320b497f7e66..327498fc55482ccb00f840b108b13cf43b764326 100644 (file)
@@ -1,5 +1,5 @@
 # schema.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 351e08d0b81656c2fdf569bcc5cbd12275b32f2d..e8b70061da4fd5da744c18c1e459a66a2df2c784 100644 (file)
@@ -1,5 +1,5 @@
 # sql/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3df4257d45a743f1cba27483214e34be551ee771..8fec5039bc055fd189fdbc05cfce3964c80876b3 100644 (file)
@@ -1,5 +1,5 @@
 # sql/annotation.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0f640530939af48013e3639dbed32bc9eff5f20f..eed0792387fa8d1cec1638214f1f8714d5802ce3 100644 (file)
@@ -1,5 +1,5 @@
 # sql/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 64fc365b96cc5881fafd2f4e7f53e9cc0c43ffd2..8e709a474e02cef3915367396bd72e6bb6c07ed3 100644 (file)
@@ -1,5 +1,5 @@
 # sql/compiler.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2961f579fbfdc8752aa19d930a05ee0fbed78524..2e39f6b36c1b7413dca3520490b9126f48dccfef 100644 (file)
@@ -1,5 +1,5 @@
 # sql/crud.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7a1c7fef6ae07add13b24eb82b58ce09dc9874f9..d6c5f1253aa89686e1a723b813bdcbdbe2b5d750 100644 (file)
@@ -1,5 +1,5 @@
 # sql/ddl.py
-# Copyright (C) 2009-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2009-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bb9e53aaea8c6531058c87e9a4ef4bf1a3f4a88c..e77ad765c791eb55f2edf6f7b241ad21b874ea6f 100644 (file)
@@ -1,5 +1,5 @@
 # sql/default_comparator.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 38b3b8c440e4d7eab573f648989cf18cac1e8158..6a4768fa11a31c0e51dc22959a92e9476950c8ab 100644 (file)
@@ -1,5 +1,5 @@
 # sql/dml.py
-# Copyright (C) 2009-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2009-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fa4f14fb9ef2f40ec149bca6518fecd944e3af8c..7d64c2c4ace43312e6d81f7aa996113e7cb25729 100644 (file)
@@ -1,5 +1,5 @@
 # sql/elements.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2218bd6602650daf6003d2c49a2f1b10eb9e338d..74b827d7e65ce948d70f5b9929abfe6776b61116 100644 (file)
@@ -1,5 +1,5 @@
 # sql/expression.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9280c7d6032fc745f95674e944d87593c9bb2feb..538a2c5497ddfcd1ee1c0194e624c9706ef3ab4f 100644 (file)
@@ -1,5 +1,5 @@
 # sql/functions.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6508ed620fe81bb9b58a9e328f5ef0be5d96dad9..bc13835edf4b606115678dd7134e5ce1fc2eab95 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/naming.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f71cba91306ea2c78e171884e400b73ebc397356..3549fa10cf948a64ab412596c50f23cf2a9aea7d 100644 (file)
@@ -1,5 +1,5 @@
 # sql/operators.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fa48a16ccfc5a2164f20e99441ca9edd29fda53b..2120e303babee2d42c1b0dfd807f73925c6c2719 100644 (file)
@@ -1,5 +1,5 @@
 # sql/schema.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 42d2e4e1268f86c3a6208d5b1e8fd4c9522a6276..6520f08fc87ee8c9e4bca9f0c0df2f4c5466127c 100644 (file)
@@ -1,5 +1,5 @@
 # sql/selectable.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bd1914da3e642166fa66655796b0665933dea47d..107dcee61df20888809f74ac62e13442da6fa6a7 100644 (file)
@@ -1,5 +1,5 @@
 # sql/sqltypes.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 19398ae96cf2ac521479019bcb5a03c01ac305cc..4660850bde90e3c14d04594b24e57b0ac33df2f5 100644 (file)
@@ -1,5 +1,5 @@
 # sql/types_api.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fbbe15da3fd2e33b774270360b3038f9f8ca5e39..bec5b582434bdab26b543a7c3a1a3ab9f6a8aee3 100644 (file)
@@ -1,5 +1,5 @@
 # sql/util.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b53b44eec30f9bca509aaab0770e2945e860d282..0540ac5d3a4dafd31a564f993f438b3e1c6582cb 100644 (file)
@@ -1,5 +1,5 @@
 # sql/visitors.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2375a13a9414e22327915172823a6476af1ee71b..bf83e9673bc622ff0bb4bcaaf2de934be21a5325 100644 (file)
@@ -1,5 +1,5 @@
 # testing/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 91d0c6339314becca83c4a24ec9eb78470da36f5..e5249c2969fe7b2efee730c057244cf18d6fb4c8 100644 (file)
@@ -1,5 +1,5 @@
 # testing/assertions.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5c746e8f105506fa8aa8c901d1615f9c9f275db5..a596d97437fd3bf4658d2dbbedeaa0015ac2817e 100644 (file)
@@ -1,5 +1,5 @@
 # testing/assertsql.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6832eab74c29477044f9a5c061884687b297e38f..d429c9f4e1e81444dedb5efa2dcc9aa3eff4f519 100644 (file)
@@ -1,5 +1,5 @@
 # testing/config.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 444a79b7033fdf46057dca2b27270e87027f24e1..3a8303546ec12c890548a2e16eb659d5160af981 100644 (file)
@@ -1,5 +1,5 @@
 # testing/engines.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3e42955e66af22d03167abb5017e6832ace43d89..65178ea5b1bf166a1248c9e2a47c7ea23b3de372 100644 (file)
@@ -1,5 +1,5 @@
 # testing/entities.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0aff43ae12d2827e0ff2dd7b623f8017995b3beb..6aa4bf142aa6a248d59a206fd095eb1c77d61dca 100644 (file)
@@ -1,5 +1,5 @@
 # testing/exclusions.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 48d4d9c9b665955767467e26747996f18c10a3be..7b421952f9ecb69b1b852f288f1b39be8c7d13c9 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c6a4d43603070667d93f3dd685f7f08135582a44..be83693cc9acfdf17bd350e7167f74723fe9d4bd 100644 (file)
@@ -1,5 +1,5 @@
 # testing/mock.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5a903aae7a814a6b772fe4d2e29cd311ffa9bba3..7b696ad6793b232ce0c0007320e6a60b9ce40c30 100644 (file)
@@ -1,5 +1,5 @@
 # testing/pickleable.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 538087770fe33991c72e5dca7ea12d3761ca7c1f..1ae6e28f5e7d4fdcec38b9a81d93c4c5222d6e77 100644 (file)
@@ -1,5 +1,5 @@
 # plugin/noseplugin.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b0188aa5a02ea89b9d6ed21548f1152fa6d4919d..14cf1eb31dc315dc8e189321c2bb277b309d4bc5 100644 (file)
@@ -1,5 +1,5 @@
 # plugin/plugin_base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 57308925ec172dffc1ac3dde546060e24143151e..65fe165cd4ace31adaa0584b03aee19b12098a7c 100644 (file)
@@ -1,5 +1,5 @@
 # testing/profiling.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5744431cba3dd69efe74973cb86687f25a066abb..32465c47d8d0ac470db6db3ceb05e47cd562c795 100644 (file)
@@ -1,5 +1,5 @@
 # testing/requirements.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 23d7a0a912c457608019d98ee8abba94c1ae4351..92a03061ed41ad0b6fa364f3fef29049548515c6 100644 (file)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 # testing/runner.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9561b1f1ef9c445761acac2c076425f2af8ff4eb..93b52ad58b0b1796d7ef075f6e6c9d37ca64bd51 100644 (file)
@@ -1,5 +1,5 @@
 # testing/schema.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8230f923aa1f9a5593b35aac80b428e1ead32591..6d6fa094eeb835d6710d6bbb42aedd80f6f1a22e 100644 (file)
@@ -1,5 +1,5 @@
 # testing/util.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 640f02a78f800f39b2207404fd735bab0b814786..19b632d34ae454172275090011c05023830d41ab 100644 (file)
@@ -1,5 +1,5 @@
 # testing/warnings.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1215bd79023b4005bd5cce4bcf98cb51f209710a..9ab92e90b55424171ae82c1bea1b7f7b9e78c53e 100644 (file)
@@ -1,5 +1,5 @@
 # types.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ceee18d86e05e396c75a48108a64b7c99b9d589e..d777d2e06f3fbccf973662bb9ef643fd51393626 100644 (file)
@@ -1,5 +1,5 @@
 # util/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2d9665e32f2e1cc7303cc1a106151b1cbf207515..b3ef9b11dc3d73913140384ecb61bcf71d510746 100644 (file)
@@ -1,5 +1,5 @@
 # util/_collections.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 972fda66730739d38bd12034af27978c4e25606e..5b6f691f1c183fdbf82bd7ba4bb7fcef8e72d283 100644 (file)
@@ -1,5 +1,5 @@
 # util/compat.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 124f304fc50fc272a02b4d56e49b37f9d6ff6b35..4c7ea47e3a66617fbea554fff2256f7cbd8374bb 100644 (file)
@@ -1,5 +1,5 @@
 # util/deprecations.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5a938501a9c6f6726582afb25c153d8970182e3a..6c52e41f850fa327b5a9db8afe03f34285050274 100644 (file)
@@ -1,5 +1,5 @@
 # util/langhelpers.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 796c6a33e17f05ad82c33ef253f221a211f197fb..29e00a434c51761cfd61a52ea9b381daa1bea73e 100644 (file)
@@ -1,5 +1,5 @@
 # util/queue.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2bfcccc6352c163f2b66ed30485637aa38e2fa86..80735c4dfed9f8a2ebb700be3bb019e37e97df06 100644 (file)
@@ -1,5 +1,5 @@
 # util/topological.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2015 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under