]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- break up the <authors> copyright comment as part of a pass
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 9 Jul 2014 22:26:55 +0000 (18:26 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 9 Jul 2014 22:26:55 +0000 (18:26 -0400)
to get all flake8 passing

161 files changed:
lib/sqlalchemy/__init__.py
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/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/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/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

index 01d1f3a8d70d4b44817a7d0baf17d673c92b7941..d55b8ba66ea918a5151b255c28b37872bac41643 100644 (file)
@@ -1,5 +1,6 @@
 # sqlalchemy/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 761024fe7ff9b7df83e20c7cf7011cbe37efb9d8..9253a21d537affae19548429adf446e360bbf1b7 100644 (file)
@@ -1,5 +1,6 @@
 # connectors/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 e5562a25e3cf5473bf00babdacf4a54650f16690..355ef24821b03987e12336585e8db9cdf8fc64ba 100644 (file)
@@ -1,5 +1,6 @@
 # connectors/mxodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 284de288aecae87a2c488670447981008aa8d6be..8261d072272171b0539a681ae78d0866465ddeda 100644 (file)
@@ -1,5 +1,6 @@
 # connectors/pyodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 e0bbc573435b11637c2202b343762e996ee1dc85..a3c6bd1f5e81898b91595dc1af5d19c491890dfc 100644 (file)
@@ -1,5 +1,6 @@
 # connectors/zxJDBC.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 57de841fa8d40e5b39c020915c4a938d7798750b..871e9d2cd77d878f2fd68385456574dc4b79ac91 100644 (file)
@@ -1,5 +1,6 @@
 # databases/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 b5ef85aba907feb808e6e97b0e031caef6321c2f..31afe156814d17a87422bebe0a924f7c52e26dfe 100644 (file)
@@ -1,5 +1,6 @@
 # dialects/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 094ac3e832de27b1f02f8dda8255e1f2a1d2149e..9e8a88245fd03eeeecf056b88a6c71cedb8a028a 100644 (file)
@@ -1,5 +1,6 @@
 # firebird/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 a3867457e95f62f9f32cba968734e6cde75456d0..c8f081b2d4598b8029e84eea44e5f8fbfcac0862 100644 (file)
@@ -1,5 +1,6 @@
 # firebird/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 4d94ef0d5d68e7b41150ed468a0d07783a94f3da..a691adb53d114aa9bee8ced68e26dffd5819083e 100644 (file)
@@ -1,5 +1,6 @@
 # firebird/fdb.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 afd62ffd3196ec7b078aab803caba385a64d688b..cdd1f7e7bbaa74f5dd2d474d8da028c01d42c9f1 100644 (file)
@@ -1,5 +1,6 @@
 # firebird/kinterbasdb.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 7a2dfa60bd64005fb3f1c9bb16276e3156197660..4c059ae2fcc045b20f502964a2ec73b14453842e 100644 (file)
@@ -1,5 +1,6 @@
 # mssql/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 95cf424239fa8060343cded5c72e65a157708b2b..d94a4517d29e85af46bcb4376fde7adb58289c06 100644 (file)
@@ -1,5 +1,6 @@
 # mssql/adodbapi.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 4c0f6ae339d344bf527846fe95a1690426673000..547df82593301606306d6dc168d1dbd971c9743a 100644 (file)
@@ -1,5 +1,6 @@
 # mssql/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 26e70f7f09ab2e26f7baab0ac9c0cfc338427198..77251e61ae373d2b9183c8ec348c46b895d8bbc0 100644 (file)
@@ -1,5 +1,6 @@
 # mssql/information_schema.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 5b686c47a24e26fd4e7ce785702c85a16ae6f2b2..ad9e9c2ba228acf98a6f3038e1d50b215ca1adc0 100644 (file)
@@ -1,5 +1,6 @@
 # mssql/mxodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 0182fee1b55a5eb86d8575c70039ece51b123897..4b7be1ac4452a8a8e88fe5abbbb7c3d1ad580db5 100644 (file)
@@ -1,5 +1,6 @@
 # mssql/pymssql.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 8c43eb8a1c2a4baa0e3feafc92f5d14ee70f4f58..ab45fa25e1d15528771fb468075c43988b3a8f9a 100644 (file)
@@ -1,5 +1,6 @@
 # mssql/pyodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 706eef3a4f1a436b14445c4c15e980a1460826c0..5377be1ce2ceae39d03c69cf18ab78e77874014b 100644 (file)
@@ -1,5 +1,6 @@
 # mssql/zxjdbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 4eb8cc6d2328b8fb0b26ac9f01ee833d5693801e..a9dbd819e2a0e3c70f525fe879d8b731a83f1490 100644 (file)
@@ -1,5 +1,6 @@
 # mysql/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 77fb34fd8e4a5fa76ee4a7c729c3cdb784ff24e2..ee5747e3970b31c3e6936a702d22ce8d40d960ba 100644 (file)
@@ -1,5 +1,6 @@
 # mysql/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 4972804595b5751c451b2f6dfe8d6e3b855e5603..c9f82a0bd92551c12b6495d396f9b421e85d9a64 100644 (file)
@@ -1,5 +1,6 @@
 # mysql/cymysql.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 13203fce3ccb49c27e226c84400ac1b704b9dddf..6f231198d0fc06d2a87d2d331564a6098c464870 100644 (file)
@@ -1,5 +1,6 @@
 # mysql/gaerdbms.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 83e731c16306b2820f469b1e20e9d3b292ad1889..91223e27096e1944c5f80444bd6d386db498e4f2 100644 (file)
@@ -1,5 +1,6 @@
 # mysql/mysqlconnector.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 19e28754125139fe1b85ae263782b8b6074e3922..8ee367a073a3d737e3abdd61ced80fb489835b61 100644 (file)
@@ -1,5 +1,6 @@
 # mysql/mysqldb.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 e6b50f335b30589c1f9ce69199cf54d9469e6e07..12136514cdc07fc19f880322ce3d932f1077d3e0 100644 (file)
@@ -1,5 +1,6 @@
 # mysql/oursql.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 7989203cfe81e0e8d3c0d24807a9031ba9e4654f..b05c22295ebd7432ac60dde28e3a0c8aa21447c8 100644 (file)
@@ -1,5 +1,6 @@
 # mysql/pymysql.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 e60e39cea65c379ca0a69bd68dcf80473e7c17ab..8b6821643854d49553ea321295ac1a54a470efce 100644 (file)
@@ -1,5 +1,6 @@
 # mysql/pyodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 5f8825f369c3dd587643c6c79b0169858d33aade..17e0627706788fb8432a9acb59d4486225a8e894 100644 (file)
@@ -1,5 +1,6 @@
 # mysql/zxjdbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 b75762ab25fc9d306cdae8c7c436ee77ef854c17..4e57e3ceec26a30fa92c58ac7088011a6fdce5a9 100644 (file)
@@ -1,5 +1,6 @@
 # oracle/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 972a7ff517675e5564e6a0da4a8f3d96b97dc6d9..781fc601f8bb84452dcb8a1146f25306794fce08 100644 (file)
@@ -1,5 +1,6 @@
 # oracle/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 2c0695fd9fc0cbe8e55357d2720b9715bcd55537..bb3c837cc679bbb1c32be9c1415995bc8304b437 100644 (file)
@@ -1,5 +1,6 @@
 # oracle/cx_oracle.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 710645b237e24d1b52912dd1f78c03ed6f59f584..19a668a3e9d87017d67c2283e99e6e8dc6c54b82 100644 (file)
@@ -1,5 +1,6 @@
 # oracle/zxjdbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 6ed7e18bc8c6827728ae7ae50f8e38c3a07526f6..046be760da0bc4e3da5ea0e87e2483dcc5543f66 100644 (file)
@@ -1,5 +1,6 @@
 # dialects/postgres.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 1ed43b635194f8e3351478e3843df4a3d0418fd2..d755e6aa1a26a71fbfbb9353a9213a813565f3b2 100644 (file)
@@ -1,5 +1,6 @@
 # postgresql/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 fdee250f16a19660ffacb03c90e21948c59910fd..2ae71c2a7ffe4cc079432e849dc139e8d6a53055 100644 (file)
@@ -1,5 +1,6 @@
 # postgresql/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 f45cef1a29c3dfa7edb8e1e9b9a5745f0f68e59c..2eed2fb365d7f71b2a3dbfccf4081904b7bb6331 100644 (file)
@@ -1,4 +1,5 @@
-# Copyright (C) 2013-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2013-2014 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 ee2c654a35ec227bfc67b6f9c9c3c3b4979c5d5a..f1fb3d308e9456000a9a63482c1754594805ba32 100644 (file)
@@ -1,5 +1,6 @@
 # postgresql/hstore.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 d19dbe118fda6d935ea1990a967f705eba666a0f..902d0a80d911a0541f756c30f03ffef70e1c87d4 100644 (file)
@@ -1,5 +1,6 @@
 # postgresql/json.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 25fafa59c63d9d5474d124f81208121430b18a81..0ab4abb093f94bc6e5fa2f876e5bc4b0c5c49411 100644 (file)
@@ -1,5 +1,6 @@
 # postgresql/psycopg2.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 f030d2c1b22532b0fd9535ba9b49ab39647b107d..fc785d4506d9669ec65599f90356db4cce08dffe 100644 (file)
@@ -1,5 +1,6 @@
 # postgresql/pypostgresql.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 57b0c4c30fd19ebbc77e7ea7bc5e40651f347157..31434743c26d2f96e2ff88ea7ca911c5c0d2a443 100644 (file)
@@ -1,4 +1,5 @@
-# Copyright (C) 2013-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2013-2014 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 67e7d53e6e73b59cd8f86bade000d9d2e69c8d38..00b428f8417481ed4cc9692dc20f294aee315d19 100644 (file)
@@ -1,5 +1,6 @@
 # postgresql/zxjdbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 80846c9ec70511a61f7b9009fbf98b7d5665b083..0eceaa53704fefce3c6938a23b5abf5f76e9ab0d 100644 (file)
@@ -1,5 +1,6 @@
 # sqlite/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 9474d6ffc29b7522b22c03c1f04073c19808aaca..8daada528eeb1d6887da93efbd67f5e7f4daad14 100644 (file)
@@ -1,5 +1,6 @@
 # sqlite/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 b53f4d4a04407b4808aa39c6637cdb962903ecee..51e5f0cdf1085d6a1fad448e7c6340fc815906cb 100644 (file)
@@ -1,5 +1,6 @@
 # sqlite/pysqlite.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 85f9dd9c91c7ec63767e3620ecd46742655bf5fe..a9263dc3fed59e137106e333b3d0cddfb9260829 100644 (file)
@@ -1,5 +1,6 @@
 # sybase/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 3e61b5ba68481af4873990bc4646881019a5b0a7..38f66583858ff93deb703b398568ae6e2ced9949 100644 (file)
@@ -1,5 +1,6 @@
 # sybase/base.py
-# Copyright (C) 2010-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2010-2014 the SQLAlchemy authors and contributors
+# <see AUTHORS file>
 # get_select_precolumns(), limit_clause() implementation
 # copyright (C) 2007 Fisch Asset Management
 # AG http://www.fam.ch, with coding by Alexander Houben
index f14d1c420a737f4cd85ade383ad6558352448b74..373bea05d49afa5c08886a771fd4930e05240f01 100644 (file)
@@ -1,5 +1,6 @@
 # sybase/mxodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 f773e5a6d133917ecb93fdc0a986f9b26f62890a..3b849a6805504f05f00a3d4b93dff6fd4e7145d8 100644 (file)
@@ -1,5 +1,6 @@
 # sybase/pyodbc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 664bd9ac0185c51a0f2167926557f39cc6588bac..678c146d359e9439deddfb9648fe0052b889bb2f 100644 (file)
@@ -1,5 +1,6 @@
 # sybase/pysybase.py
-# Copyright (C) 2010-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2010-2014 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 9c64608586132bca966705fe86d328ba686a4738..6d6e7a3549e4a83b9a8f55a5a3aaa5b187f3a24a 100644 (file)
@@ -1,5 +1,6 @@
 # engine/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 6da41927fccf9c7e2478abd99cc4d20c95c05fbd..73c35c38f3f581fd897f87f177f7abd0f92558f8 100644 (file)
@@ -1,5 +1,6 @@
 # engine/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 0fd41105cedf12a0596096817e3f0614908f4252..58915fed2c98dfd1ca393d77fc37d565149a8ee5 100644 (file)
@@ -1,5 +1,6 @@
 # engine/default.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 1807e428390733153f75b42e9ad99d2c88cb309e..e7f43d82192215899070813a14373b8e3777751b 100644 (file)
@@ -1,5 +1,6 @@
 # engine/interfaces.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 fbbbbe2ba70134896d21cd90f1d5259c12ee5e55..2fa5dc4946576b5be5d05915ace32f4ddd32a065 100644 (file)
@@ -1,5 +1,6 @@
 # engine/reflection.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 0838d810daf46fba5fd8ab95af2f9927119e0f4c..d86322e51f95ca6d5d0fe6e7515e99628f18b90e 100644 (file)
@@ -1,5 +1,6 @@
 # engine/result.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 691c06a8c37f180caa45609ff14b62983a5962ed..23d24e9797b3256c84aedf37f003a7e69908e0f1 100644 (file)
@@ -1,5 +1,6 @@
 # engine/strategies.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 ae647a78ef733db4122db767e2a0c5ab8ee7d681..eb923e96bed23f2d929e67ae355b74ac201a8119 100644 (file)
@@ -1,5 +1,6 @@
 # engine/threadlocal.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 78ac061877b60a99aaaca47ac36a8066e2e69e5e..7d61968b9ede714783088b197fd10eaa8469c84a 100644 (file)
@@ -1,5 +1,6 @@
 # engine/url.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 6c0644be471ea2b0e78d111ea337ee9169636b8f..6a6fe6ee1d11376a4e20d992db8ed794af0139c9 100644 (file)
@@ -1,5 +1,6 @@
 # engine/util.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 b43bf9bfac983c175e57372905adac01dcf90c3a..b93c0ef85950a45440530d072431cdf768b6dc13 100644 (file)
@@ -1,5 +1,6 @@
 # event/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 d6889febb6aa782fc766f4454113607ef23ea49a..ddbf05cfec9537e2119d83397bf2c4372251e765 100644 (file)
@@ -1,5 +1,6 @@
 # event/api.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 b44aeefc70f0179ad430227acb571650b624adc4..57adc42081fa8b160dd88fd05f791b8a09e29065 100644 (file)
@@ -1,5 +1,6 @@
 # event/attr.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 69635f35b4789e626146f6c0171880d8d6363c3e..3aacee2ebe3e4a720209f18536f409834a33f6d7 100644 (file)
@@ -1,5 +1,6 @@
 # event/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 d8a66674d95c876445fb6c58e3859b8beac6d6ea..fc3aa288eb525f58c83b6377921ea94854dac6cc 100644 (file)
@@ -1,5 +1,6 @@
 # event/legacy.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 6f3eb3e85bbb4630a3c8c8b62858487230eeb546..11f5cb57922a57a4be8d6aa61255d9fa6e8dc902 100644 (file)
@@ -1,5 +1,6 @@
 # event/registry.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 e4bc4861518d02eb701dcd75333ed7f5114546b4..3f7a4830486617870d085d9d24e59613f2efb8b9 100644 (file)
@@ -1,5 +1,6 @@
 # sqlalchemy/events.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 68e517e2659981b283496dc872a461828fe0f654..965e5569212e8a40e2f6cf1592bb189f6de25cbd 100644 (file)
@@ -1,5 +1,6 @@
 # sqlalchemy/exc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 1d77acaa74d34436bf24b2a7a518815a105b804f..d213a0d30de49eb68e0c4ff04f921a5798b4549d 100644 (file)
@@ -1,5 +1,6 @@
 # ext/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 045645f866ca10fba53055417a4e74c71ad37544..92816310ae9021c536c1f612452d941a7096c4eb 100644 (file)
@@ -1,5 +1,6 @@
 # ext/associationproxy.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 922ba1642630c56c3fd56f522cba1368a129a426..1da65011ddd9e0f70e2a5da8fba373506625e144 100644 (file)
@@ -1,5 +1,6 @@
 # ext/automap.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 6ab950b37a36730c1444264e9f485a40b5fbd78f..03fde2668da3e212e389572d57eb503c8787d1e0 100644 (file)
@@ -1,5 +1,6 @@
 # ext/compiler.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 a77405e5496102868c30ed596fe674ffe930c3f6..eba6cb808ceb4f134363724902d8b7f3e875131d 100644 (file)
@@ -1,5 +1,6 @@
 # ext/declarative/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 941f02b009d7b1851cad77819ad1c5db883ff119..5f3d0742ee90b3938aa61760b36318d5c6d5ac96 100644 (file)
@@ -1,5 +1,6 @@
 # ext/declarative/api.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 308c096919a72fccd22f345d8aa01153dc9d0aed..41190e407d27635d07ff0cdcc918c3c18cd72440 100644 (file)
@@ -1,5 +1,6 @@
 # ext/declarative/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 8b846746f53a6c25c8eb20259b038f527b9e0b35..b05c3a6473e474e6ad930ebbdfcb4d965005fc8e 100644 (file)
@@ -1,5 +1,6 @@
 # ext/declarative/clsregistry.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 8b3f968dc9d380110f1f2f7b61fd000c86a7b8fa..233f172ef23574b4aa5e96d0ced697c827211039 100644 (file)
@@ -1,5 +1,6 @@
 # ext/horizontal_shard.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 576e0bd4e03515705567358f0f6c813e526bc65d..7f5a9135515d613effd1550a505db5703ad8c0b8 100644 (file)
@@ -1,5 +1,6 @@
 # ext/hybrid.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 6373b2f00793681f31916c04b6c22694eb643cb9..0f268de5f43f59ba63fa7a29aa1d1d195fb6337a 100644 (file)
@@ -1,5 +1,6 @@
 # ext/mutable.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 5ea4a6a9014bf2d2d636d917b12be573d50f4e83..8ffac5fea3684381f5d8635c5f8717a80a33043c 100644 (file)
@@ -1,5 +1,6 @@
 # ext/orderinglist.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 388cd40482e7fbf01bf672479d8f1b258597e3ad..17c1ed30c2775fb03b4e92dadd2012c75bef2995 100644 (file)
@@ -1,5 +1,6 @@
 # ext/serializer.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 fe9e405558e92fb9bb6d5e32934924d7eb011dd0..dcd3b441dba2b53467ce7fe96a5529eeff1bfd4a 100644 (file)
@@ -1,5 +1,6 @@
 # sqlalchemy/inspect.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 ed50a6456bf3f5801cfbffba0f00fd30bee22f0b..f09a3ff81b7e7b400245af2be103f3a7e48f8088 100644 (file)
@@ -1,5 +1,6 @@
 # sqlalchemy/interfaces.py
-# Copyright (C) 2007-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2007-2014 the SQLAlchemy authors and contributors
+# <see AUTHORS file>
 # Copyright (C) 2007 Jason Kirtland jek@discorporate.us
 #
 # This module is part of SQLAlchemy and is released under
index b42bd3dbdb117d67ab41151966a7bcdd39aa34b4..88d6de08933948b1b04d792ab85e023d83f0a1ba 100644 (file)
@@ -1,5 +1,6 @@
 # sqlalchemy/log.py
-# Copyright (C) 2006-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2006-2014 the SQLAlchemy authors and contributors
+# <see AUTHORS file>
 # Includes alterations by Vinay Sajip vinay_sajip@yahoo.co.uk
 #
 # This module is part of SQLAlchemy and is released under
index 8dfa68853c581b6d1a9205cc917befd796f34c59..6cd9dfcb1da80a1b67812f02ff65fafa2f0e83e4 100644 (file)
@@ -1,5 +1,6 @@
 # orm/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 fecd74f308a49efb0cef6d59a2dae2c326cc590d..329367473333e10eeb31d4ff8a8bc547b4502fbd 100644 (file)
@@ -1,5 +1,6 @@
 # orm/attributes.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 30603cba18fba10882ac02918f9707df1172a8ce..de103bf71465522047c6f37f53d94157f0e9b5e9 100644 (file)
@@ -1,5 +1,6 @@
 # orm/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 530cce96278d393ba0a1dbc67c1a13120d8b7ad5..9741895db7f742b46b044a84441ff1a37a6e5e0a 100644 (file)
@@ -1,5 +1,6 @@
 # orm/collections.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 40d6bd77627db2029263086675d2727073e0c71b..3864eb1bdf88d882d086825e94aa96920c4d3dc8 100644 (file)
@@ -1,5 +1,6 @@
 # orm/dependency.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 e4495e12aa2bfeb6eec3ae6d86500d78d164e233..cd918cafe8c10fefdb12c80877e9c8cfb8912ee5 100644 (file)
@@ -1,5 +1,6 @@
 # orm/deprecated_interfaces.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 9ecc9bb626012628648d38e5261c0d3f4cc3882e..4c335a71cada063d4ddbd1065199072d0a1fe6e6 100644 (file)
@@ -1,5 +1,6 @@
 # orm/descriptor_props.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 82e0b00481ad354142ee3a706f03be131b78d462..68a09ff8c4c63067676cab86f94e419717915fb7 100644 (file)
@@ -1,5 +1,6 @@
 # orm/dynamic.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 ca26c9ca4280f729235a3fb5d8961745e0dc2cce..3b56ff55a0a8d39bc393652ea9d09cd36f1d0556 100644 (file)
@@ -1,5 +1,6 @@
 # orm/evaluator.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 2656abfca935ea7eb3bba24509fe0e465c73ff20..0e08a0898f1c018c7c2f1a7f9aff430f1cd9afd1 100644 (file)
@@ -1,5 +1,6 @@
 # orm/events.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 d1ef1ded98eb3b6a0ff567cb0ba979f0fd6a746f..11e69d221def64e4e8aee8c85bba9391cd7d717e 100644 (file)
@@ -1,5 +1,6 @@
 # orm/exc.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 fa3a31d9c34b0553f01176706bf2652b4100b5c2..745b9d569d495a940caa64a2fee66da301c8a5e3 100644 (file)
@@ -1,5 +1,6 @@
 # orm/identity.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 7699e0578677b07a7d60395cd1365a3d7fe13ade..fd74704df293a84542be43119524e86b95d0550b 100644 (file)
@@ -1,5 +1,6 @@
 # orm/instrumentation.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 1b0bf48a99e5b897d2fb959d9007eab0da501c36..d5e4305065b7434d429c72949fa78f9faa34f2a2 100644 (file)
@@ -1,5 +1,6 @@
 # orm/interfaces.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 dad1f1a0aaaa09bba0d7f619ee8f7fdc42cd6d6c..3c152717c66560450b35405f7588086f987f4b59 100644 (file)
@@ -1,5 +1,6 @@
 # orm/loading.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 bac54cc0a4cd08ee20b879d741f15160646b5cf6..6c1b149bb1e2ba8e3ffc5cf1c7f47c25a6f3ccef 100644 (file)
@@ -1,5 +1,6 @@
 # orm/mapper.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 3397626b848e2cb8d5c1071b4e25fff8d3014541..fb4f4b986ef2062c3d2f3d3f0f84d460e9387aa6 100644 (file)
@@ -1,5 +1,6 @@
 # orm/path_registry.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 56778cb0546175c058fe227f6e15f3db9bd4fbbf..6669efc56b048e0689873285395e9280bbdaf939 100644 (file)
@@ -1,5 +1,6 @@
 # orm/persistence.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 a0def7d31bfdebde19988370db8f01239e251145..fabacba05b18bccd8240915787ecb0f827aca874 100644 (file)
@@ -1,5 +1,6 @@
 # orm/properties.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 728f7787a2b11062f5bbfb0f54eec41ae2a17a62..751f9f84b946f635f392847ff5ce290546b62d28 100644 (file)
@@ -1,5 +1,6 @@
 # orm/query.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 b7992c9bd8fbe2a4b6e3c9c1f738bad267070897..a5327e52e1675b7dc4e8380761a67b2e7a30de6a 100644 (file)
@@ -1,5 +1,6 @@
 # orm/relationships.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 c1f8f319f70c1f55580860dc4f267dd98ba9af9b..e3be9ddaedf1419857e7a6d1ba2bbd02d1d46385 100644 (file)
@@ -1,5 +1,6 @@
 # orm/scoping.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 714c42a84e0350caa47072cec34aa955dcbdd188..9ce988a126ebf02e52e67d3a257ffb4498ee81ec 100644 (file)
@@ -1,5 +1,6 @@
 # orm/session.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 6cf550f88767a986f82e73733bd00a4845bac1dc..573e6515d1c81aad0dc3ded5de4c6255adc32595 100644 (file)
@@ -1,5 +1,6 @@
 # orm/state.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 81860e045999b8cd95cb4e0974e4eaeb5fb70938..f2d4935d74b469d858fd25b73257908146a66c63 100644 (file)
@@ -1,5 +1,6 @@
 # orm/strategies.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 eccb4f7f0fc014e49f9003bc5bc704fba73f8d7b..28130dab5cd2a8bc569a42c03783949f6f28cfc6 100644 (file)
@@ -1,5 +1,6 @@
 # orm/strategy_options.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 7556e9f71301dec7675971609aaef79d748de349..dc59bb27b579272ae2ef4698105bf2339e84bcfe 100644 (file)
@@ -1,5 +1,6 @@
 # orm/sync.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 bb6a961b12a733f8ce17d0fc073e6177acc5a27f..b7f739ec5b2bebd24cc29625397bd7404b6bb56b 100644 (file)
@@ -1,5 +1,6 @@
 # orm/unitofwork.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 8694705a48f4c42427d66e4794f36e1951331309..3626a8a0305019174b90bc172b13d25b0ee426fe 100644 (file)
@@ -1,5 +1,6 @@
 # orm/util.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 4020311a00f9d522045a29f3c7fa4928113dac53..7150ce81fda998f58661d4bbff96ff10f62f4ec8 100644 (file)
@@ -1,5 +1,6 @@
 # sqlalchemy/pool.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 d0f52e42b8e345609b42886e8330a5f938d404f9..0f47f4e66af5bb5f0eb7571dfd02f7a0a312b68a 100644 (file)
@@ -1,5 +1,6 @@
 # sqlalchemy/processors.py
-# Copyright (C) 2010-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2010-2014 the SQLAlchemy authors and contributors
+# <see AUTHORS file>
 # Copyright (C) 2010 Gaetan de Menten gdementen@gmail.com
 #
 # This module is part of SQLAlchemy and is released under
index 743d1b40eaefbbf03142c6166efda79a6d0ce61f..4b6ad19884d0a9642171fa20cb98ecf9069ff79d 100644 (file)
@@ -1,5 +1,6 @@
 # schema.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 95dae5aa35aeacb5c0a690f23acad882baef60d0..a24f0cffa9cbc7fc6948f8019e80d7d149abbc7f 100644 (file)
@@ -1,5 +1,6 @@
 # sql/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 11b06667509252e6a5f71146f6564e1efa66c1f2..380624a9baed941299a93050c5363c21779ef326 100644 (file)
@@ -1,5 +1,6 @@
 # sql/annotation.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 28f324ad9d53568d5cc484a36c64d27a9e48a5d1..f9a3db285afe52e846872979bf3db0cc540bc548 100644 (file)
@@ -1,5 +1,6 @@
 # sql/base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 010df5a1608625c06526e232fc2809e20c107c0d..90a65a7e26d85485bd32533a48f879492e50ffca 100644 (file)
@@ -1,5 +1,6 @@
 # sql/compiler.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 2a282ed57364a598ce604eff8da4c3cf24fd0fe3..d8627a08d9a44ee640159a79426261f688ad88bb 100644 (file)
@@ -1,5 +1,6 @@
 # sql/ddl.py
-# Copyright (C) 2009-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2009-2014 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 4386eb52c27e914ed3ba9afe8d6a6629ed9019fc..977ed25c2145344ecb6785d55af57dcab5f3a29f 100644 (file)
@@ -1,5 +1,6 @@
 # sql/default_comparator.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 098f2d58424276db916b8c058081fa47eb3ac24d..2368c3eec0db238a9f289260090116f144f30f39 100644 (file)
@@ -1,5 +1,6 @@
 # sql/dml.py
-# Copyright (C) 2009-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2009-2014 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 bf0ac3def36a4e60f53be267daed6a8014035235..3882d9e5b341368d35155048c8bd2ac3e8b2463a 100644 (file)
@@ -1,5 +1,6 @@
 # sql/elements.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 9458aed04644f35de8bc5ac31a70b08baeafc9a2..c2fd0907df3a99f22d6a6bbe36bbdc6b4dfa65b0 100644 (file)
@@ -1,5 +1,6 @@
 # sql/expression.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 4ed7d853d9bddbe5f93591dd62b4987081ed617f..a18ebf7e2878308d6faee960ed6778269e6f08e3 100644 (file)
@@ -1,5 +1,6 @@
 # sql/functions.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 34a72a011a891c01da3c8004eb6b29639d690840..d05054bc6b62321572a524d1a13018d2986c100f 100644 (file)
@@ -1,5 +1,6 @@
 # sqlalchemy/naming.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 55700a3822f4e1788fef22ae0fbf742e1aff31ac..50293d2397cfd01b59fcfd8a930902fccb87f9bb 100644 (file)
@@ -1,5 +1,6 @@
 # sql/operators.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 f489a7b1d4c0c44a90bbd69931b3c88fd19f62b5..3e8b72ec5dd756065774e8442a9cf4b14fe67b18 100644 (file)
@@ -1,5 +1,6 @@
 # sql/schema.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 8c58c7c2286c5e21418e781a7f669e0e4afa8f8e..0d8162ba31f1fc1ccc413def711281706e84c620 100644 (file)
@@ -1,5 +1,6 @@
 # sql/selectable.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 6f8ea7c6981ecc071b965ee75f59317eb37fa02b..671ea1b703fd3e2cbddbf7f62aaf0022de46a21a 100644 (file)
@@ -1,5 +1,6 @@
 # sql/sqltypes.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 444366bc08ead37d5822deacfc44af5a0c78d966..6fa0bc64a227e92166c69b4e4a236f72a62ea274 100644 (file)
@@ -1,5 +1,6 @@
 # sql/types_api.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 639f53ddc0cd6b7f4ab76644d003c9e8cae79ed6..b4ed7a5f3424ea710f3b0e74774b224c9e820c25 100644 (file)
@@ -1,5 +1,6 @@
 # sql/util.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 d9ad04fc06f883254aa6a2164592ae59f52679a9..ddf469d47212347a93e9afce19527cc7af1d5873 100644 (file)
@@ -1,5 +1,6 @@
 # sql/visitors.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 c03c6f349f09533dd445dcb5a43f49126980dd11..453f2329f5c0599108daf716d47f323c4f1d2d7d 100644 (file)
@@ -1,5 +1,6 @@
 # testing/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 9373e2dc4ff8b07e1e23aef9c3ca893ef4b7a689..bc75621e9cc9408f9d0727c39f1034bc09dc14e0 100644 (file)
@@ -1,5 +1,6 @@
 # testing/assertions.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 d77fc18a2eecc30153dbb8f0e9d27765f45929b6..7b4630c0581c517c2cace2b088bc65d2ba410eed 100644 (file)
@@ -1,5 +1,6 @@
 # testing/assertsql.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 20af3dd2e5156dda572f9f8609e98b1e26f6f127..66bfbc8927efcb0eefe3ffb688853ee585f0d80b 100644 (file)
@@ -1,5 +1,6 @@
 # testing/config.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 1d149862018360b198d315a99bc738216cf9da03..4136e529215bef39e6ba84aa85df0eaaf819c793 100644 (file)
@@ -1,5 +1,6 @@
 # testing/engines.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 ccde77a7eacfbda0aca0feb3495dcba747a203d2..7bf99918a052389ac07057fb9c767361a941b206 100644 (file)
@@ -1,5 +1,6 @@
 # testing/entities.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 00ca28428eaa37f6897765b679ef57403a2afb83..41337ea4d048a058fe103d693a015db635d97280 100644 (file)
@@ -1,5 +1,6 @@
 # testing/exclusions.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 7941bf0f82aa38d11193e277dd38c447c3de82b0..23d010ec9a78c215cddefba96c47015af2f5ce47 100644 (file)
@@ -1,5 +1,6 @@
 # testing/fixtures.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 18ba053ea5e56b49a7b5b9e00c647688272904a8..ccbe8aa92d16ee89b282db68ee0007f330d2df76 100644 (file)
@@ -1,5 +1,6 @@
 # testing/mock.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 9a41034bfff8a5e0949ce4f84414f872d93b9492..fe68457e8ea9737242fb5b28b9bfef4adc056786 100644 (file)
@@ -1,5 +1,6 @@
 # testing/pickleable.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 bd38745c0f7dd9cb75863411d9fee4a27167a83f..7262adb4b4fc1a861d571a5b3ddba10cedd37dce 100644 (file)
@@ -1,5 +1,6 @@
 # plugin/noseplugin.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 a068272421c39485fc80e04de5db10cbde5920bd..b91fa4d5033d5d607127e624c42f28e9fe11bf22 100644 (file)
@@ -1,5 +1,6 @@
 # plugin/plugin_base.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 2f92527e940bb6f28f2e84989f8dfe81eddbea97..b818e4e159ac06530c8ed2ecb64bc61035428f46 100644 (file)
@@ -1,5 +1,6 @@
 # testing/profiling.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 e1669e95207cc919f63a89a6839998115a795538..59578ce7fad94959ec34b62fa63b7f68ecacd11a 100644 (file)
@@ -1,5 +1,6 @@
 # testing/requirements.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 19aba53df11a1b98ccfe70b14aeee7f59754615f..d0c9afeebf4ddd1a8205d1b8160b58917cdfef9b 100644 (file)
@@ -1,6 +1,7 @@
 #!/usr/bin/env python
 # testing/runner.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 4766af180ec3b2f9838376a601b0c2de5ec761c1..2e2a9b5ee1b06c8cbe3cdd77d8d9053a5958c00c 100644 (file)
@@ -1,5 +1,6 @@
 # testing/schema.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 bde11a356ae763a853bd3ab72c015c6ff581a7da..35557582e08aec57b3f34ad998df58224f06f20e 100644 (file)
@@ -1,5 +1,6 @@
 # testing/util.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 849b1b5b49e008e788aaaa67a4674aef69477327..33d338e8f4028f628a211fbc96615a6ced6ba40d 100644 (file)
@@ -1,5 +1,6 @@
 # testing/warnings.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 31d1dbac0ef0a1c5123c8b918b9e6fc12ab27068..75fabcad81d5d8c7d11e2bf0f2a9a2a9e90e783f 100644 (file)
@@ -1,5 +1,6 @@
 # types.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 79c2d689f330762e505e5932838cc2d895c8609c..a2e755c3833fd62aa7b458c7ea4bb5c9378c4329 100644 (file)
@@ -1,5 +1,6 @@
 # util/__init__.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 be80a072ec2c0d7331284341818566953e70b8c7..2e61f595f8e2d1b18b63eeff2bd34fa4bdba24e1 100644 (file)
@@ -1,5 +1,6 @@
 # util/_collections.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 ac0478b39feebcca90e5041c2a8025d88f138b6c..40f7b292280477605728e462369bf398dc84cd24 100644 (file)
@@ -1,5 +1,6 @@
 # util/compat.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 c8854dc32b713c98c423d39c756220a3a6d6dbf7..c9147db707f162092d017fac808b2f3fe8e1deb9 100644 (file)
@@ -1,5 +1,6 @@
 # util/deprecations.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 ad1c286f3941f41db50c7f709e85c685baacfe8d..7960bde7fac10b9d181ee5e21ef4b90ae3629afa 100644 (file)
@@ -1,5 +1,6 @@
 # util/langhelpers.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 c98aa7fdaba311d1edb30f5d1f729306e8854f78..0296f05c120e5ea2b8fda20e3d5563c4a954412f 100644 (file)
@@ -1,5 +1,6 @@
 # util/queue.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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 fe7e768965539967fe57b3c59349d630102b44b9..76e041a9ca5e740790b79fd5c233be7b93b3ed4c 100644 (file)
@@ -1,5 +1,6 @@
 # util/topological.py
-# Copyright (C) 2005-2014 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2014 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