]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
happy new year
authorMike Bayer <mike_mp@zzzcomputing.com>
Wed, 4 Jan 2012 20:38:26 +0000 (15:38 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Wed, 4 Jan 2012 20:38:26 +0000 (15:38 -0500)
111 files changed:
doc/build/copyright.rst
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/drizzle/base.py
lib/sqlalchemy/dialects/firebird/__init__.py
lib/sqlalchemy/dialects/firebird/base.py
lib/sqlalchemy/dialects/firebird/kinterbasdb.py
lib/sqlalchemy/dialects/informix/__init__.py
lib/sqlalchemy/dialects/informix/base.py
lib/sqlalchemy/dialects/informix/informixdb.py
lib/sqlalchemy/dialects/maxdb/__init__.py
lib/sqlalchemy/dialects/maxdb/base.py
lib/sqlalchemy/dialects/maxdb/sapdb.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/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/pg8000.py
lib/sqlalchemy/dialects/postgresql/psycopg2.py
lib/sqlalchemy/dialects/postgresql/pypostgresql.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/mxodbc.py
lib/sqlalchemy/dialects/sybase/pyodbc.py
lib/sqlalchemy/engine/__init__.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/engine/default.py
lib/sqlalchemy/engine/reflection.py
lib/sqlalchemy/engine/strategies.py
lib/sqlalchemy/engine/threadlocal.py
lib/sqlalchemy/engine/url.py
lib/sqlalchemy/event.py
lib/sqlalchemy/events.py
lib/sqlalchemy/exc.py
lib/sqlalchemy/ext/__init__.py
lib/sqlalchemy/ext/associationproxy.py
lib/sqlalchemy/ext/compiler.py
lib/sqlalchemy/ext/declarative.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/ext/sqlsoup.py
lib/sqlalchemy/orm/__init__.py
lib/sqlalchemy/orm/attributes.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/mapper.py
lib/sqlalchemy/orm/properties.py
lib/sqlalchemy/orm/query.py
lib/sqlalchemy/orm/scoping.py
lib/sqlalchemy/orm/session.py
lib/sqlalchemy/orm/shard.py
lib/sqlalchemy/orm/state.py
lib/sqlalchemy/orm/strategies.py
lib/sqlalchemy/orm/sync.py
lib/sqlalchemy/orm/unitofwork.py
lib/sqlalchemy/orm/util.py
lib/sqlalchemy/pool.py
lib/sqlalchemy/schema.py
lib/sqlalchemy/sql/__init__.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/sql/functions.py
lib/sqlalchemy/sql/operators.py
lib/sqlalchemy/sql/util.py
lib/sqlalchemy/sql/visitors.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 1fc8ab92d7efb77b32ab0025294f0f3d4b033c40..d56e9fad66368fbe3fbefae41bd8833d49cbc16b 100644 (file)
@@ -4,7 +4,7 @@ Appendix:  Copyright
 
 This is the MIT license: `<http://www.opensource.org/licenses/mit-license.php>`_
 
-Copyright (c) 2005-2011 Michael Bayer and contributors. 
+Copyright (c) 2005-2012 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 340c5b8fb066f316752c2bb1206828fa2ab13fdb..5a0e2eb242b69ab2b5149b83b34ec3d286b7efd0 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 5573dda407ba4595f8f6b2fe3f4b7265a5f01ac7..e46253b49abb08c697eb20904091954dc0076f65 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/mxodbc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 b90846de00b1cae05785cf7a8c0a64405e2883dd..439b8f4feffbb44d3e09e053a0b7567b89e4adea 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/pyodbc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 20bf9d9cfdfb98696e0c5b7f209f731fa951b2d6..5bc25f4aa85c9ad83fc6f340a09d76488b5a7993 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/zxJDBC.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 dddc8f68a6f109cfece0c8a283f9d3ff4926ead5..fe63883730de9750e12d9bcb01d864d5ab08a342 100644 (file)
@@ -1,5 +1,5 @@
 # databases/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 48e578a0211258944aa8ce67b9ebdea3028501ff..2d48324122b09348f3e9085a68cad423bd8cd8fa 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 ca2678e58c091df617a1514c57f33b8b8593736d..62967174fd7dd93bcb3bee862d0f1e6685361714 100644 (file)
@@ -1,5 +1,5 @@
 # drizzle/base.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 the SQLAlchemy authors and contributors <see AUTHORS file>
 # Copyright (C) 2010-2011 Monty Taylor <mordred@inaugust.com>
 #
 # This module is part of SQLAlchemy and is released under
index e87b5bb5c6fbec00d43d51ee8ada37f2da2ed1b3..665e32267f3cd10661970f1e32524da1cff337c7 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 5f07b57b761aed8bbba693b7ecd591841cfccfcb..8cf2ded2f01f305782b52ed5950bbda6fe07dc89 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/base.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 ebb7805ae6450b0a0c6765d978793a135acf24e8..d9d749b3cc43989beea470fa089a8a83d43af661 100644 (file)
@@ -1,5 +1,5 @@
 # firebird/kinterbasdb.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 9dfd0ca5b08e5c173a05ea0f34d970307eedf28a..e500bea55499cdc9ba9d955f4956fba3544ca4f8 100644 (file)
@@ -1,5 +1,5 @@
 # informix/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 f6749e5cf35986021b864829e07c4bc247e03b9b..867cc408ce457f0e02f0c95e8bddd855f5195807 100644 (file)
@@ -1,5 +1,5 @@
 # informix/base.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 the SQLAlchemy authors and contributors <see AUTHORS file>
 # coding: gbk
 #
 # This module is part of SQLAlchemy and is released under
index 1b6833af7d539272d21909577d25a1ece027373a..b771e15017c4aa113a59b82edf96becc8868c426 100644 (file)
@@ -1,5 +1,5 @@
 # informix/informixdb.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 0a39965bcae17641f22afb5b58ac2d8a93ea7273..c045f1156f37dfe39b438664f45b62fcd471bf1c 100644 (file)
@@ -1,5 +1,5 @@
 # maxdb/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 a6d43a2ab1add704ad1537e105bd2cc27f47ae29..027efbb899d94e39b36f17a4234f269f68ab7091 100644 (file)
@@ -1,5 +1,5 @@
 # maxdb/base.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 da04d809f24c75faba15d74d6cd7ea8d2e8aa660..280411b261c2a0d09f48506868465256c7945649 100644 (file)
@@ -1,5 +1,5 @@
 # maxdb/sapdb.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 6e7bae44b8b563a251f6b03c27fb590cb938e302..8a2101c51f3be8736929bea9cf09c3a550afa94b 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 f2d945de217519140c6190a4edad4b87ded22cc0..21e63288044377d0581660be5e52cf9df070714b 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/adodbapi.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 5443a66cbfc4c4e465c87ef27b139d9ff47ca294..7df83d0574ea35d146cd26657ea2e082f242b791 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/base.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 87dd0a1673e5f0c7c45e947d68207c68a959e29b..29a9de3447893d043a6957fb7245cd32f66b54ac 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/information_schema.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 6a830509a7ebea90b1f74f4b84fbd0d69f3f77a7..765998697373f022ccf5277df56bde3647459a5e 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/mxodbc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 8bc0ad95b7aa968708ed35a17d01a552055cf534..9a68daf432764c4b09ba85bd8596759c1ae91cb5 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/pymssql.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 b3572b57499495b763dbd62759c674495481232b..7b47004ea82480c7df296f2f40a1fac4d9ab437b 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/pyodbc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 c293adbe6ba0a7121b5c62747c0b5538b898700a..bfa358c0c35d9ea04e16b449246fc7f550ef0b82 100644 (file)
@@ -1,5 +1,5 @@
 # mssql/zxjdbc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 7cab573e3e541d6bc7db8199c8882f894a46bad1..135ff37d83b2b7cc28caa2b77ff9ac1ff1ae62fd 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 b7683581cfb6bfce54d95603a369edeec50b8ae4..7b0a72dff40de426c77e952b5712170963d2e960 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/base.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 035ebe45990214250d98732893499364711cc39e..be99367be961a6fe319c9543a3b9742d4c7b3d7a 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/mysqlconnector.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 044b9110a4cd181fcffa55da8f70f41934fba341..656e105a70c94615223cd75dc1eb1b4e070c1430 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/mysqldb.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 25273a61999c55e3c19e4655cb25f623f078523b..2a3c6b09c7a5f101df4f490eac7ed9e34d3c4649 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/oursql.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 04c011211b9b39006df6ae021c7c2d774f6eaa51..e05d50d30744236278619e6cb10b43ebc792b2f0 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/pymysql.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 84d43cf272db2f2ce4a184cd641193685646a0d6..20a16988aa723fcc79e947edc5b85a4a8a74f976 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/pyodbc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 a56fb6a55cc3ad397df0152f82f988f9be915b15..816e10bae264dbfd87c03a4aa8ecf850ca5a5b11 100644 (file)
@@ -1,5 +1,5 @@
 # mysql/zxjdbc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 59267c5e76dc1475327edab415f3d0c21b0ef42f..3b3a3b12e8bbcdd7c126633a81299ca72095a7dc 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 91be5a95d132eec7be701156a05a0f257160375b..88e506287d452e3cc4eef44ca1b8264e4133da88 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/base.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 078136f70eb270a97258aa46738a80b0c040333a..a7ce209f49c6ec585fa8b202128763ee42b69d6a 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/cx_oracle.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 baa36b22b071fc42c74e25d62645072cd8162f0c..fa86294bd00322b13cbdab71f221261e917be71f 100644 (file)
@@ -1,5 +1,5 @@
 # oracle/zxjdbc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 48d1a8c3bcf003d8cee85706835e58b31a64dfad..8c5097d63f7d709da90701d89dd2387c1c46e05a 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgres.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 481a7fb76b7439ee03789f279bc79a0587c8faab..bc0c31275a5ed6c0bb3a2c51343a524f7a54bacc 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 ba6f61b40ab2844c49da6c6fd958054f3eb09c58..f2510744f764b87fa1babd06312239d180505743 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/base.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 ac927edbb62e3e30413089118dab2024f9e2dc67..9a65bf08fc83071eac10d9902f5d2bb6b6e86c6c 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/pg8000.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 99947bdaf2bb2f36a9465dd8112ac67e6dbcc824..c66180f98510a3b005a0b41d35363217cc09925c 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/psycopg2.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 d52e3db6d09479e70e282e970a7c8bdd0d123ffd..e902c684ec53361a6346370965b86a8adb65ec2b 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/pypostgresql.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 f64b42acbd596c2e09ceeb6826b2c2c5d6facfbb..17969954ae83ace344f468865d85b7182279fc77 100644 (file)
@@ -1,5 +1,5 @@
 # postgresql/zxjdbc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 d939d51cd819b7b1a1700e4635a85fbe70a5f02b..0958c813c4d65e337665b1831f8f5a7edd254e54 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 9d5e070b3dcfa665ecc4cd8c4356c572d87b05eb..63f66f9d280ea708cdeab157be9e73c4978a41e5 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/base.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 7247168317ab51f0bd82352322060a5ff13c67a8..f4c3338da1d4f42e89dc321569d724d14c29363d 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite/pysqlite.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 1481c6d9edde08ef8531bee6f2f98de349270070..7a91ca673441de5e9f99987eab1dc57278afd0b7 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 756c0b28eda43342f2499b90637d2886dcc813c2..f88b1ed3c6421b1ef4c4c2f16d94620e45152c4f 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/mxodbc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 c8480cb437b9d23665b117360d0797567d47f530..35d8d15420ac48f85f42b3bd39b12ab25282ffd2 100644 (file)
@@ -1,5 +1,5 @@
 # sybase/pyodbc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 1835d8a074d558eea5a52e7108c002dfa9a97fc0..4fac3e532b865a74db313e461a6c1c19c728c266 100644 (file)
@@ -1,5 +1,5 @@
 # engine/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 a99814d404a4b3c29bf3ea619b8d6e3b9bb29515..3c61278455f7a39bdb53ec23b1f65e112b769309 100644 (file)
@@ -1,5 +1,5 @@
 # engine/base.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 876a9f5b1e94c2b8a258ead59d26d318dcf8b568..859dc4bdc9e28337884fc844c89a200637db8f58 100644 (file)
@@ -1,5 +1,5 @@
 # engine/default.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 a69fc5b98a9e6eb27cf6fbbc0802ab0384faac5c..947423334261412d6541bd90a0d8ba2d4f2b39d8 100644 (file)
@@ -1,5 +1,5 @@
 # engine/reflection.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 b9a1671ec8a7fc99c4eeb1ad59ba5ec9ceda7cfb..1902b04c4bf40602f34be22f093a82ee70dc2560 100644 (file)
@@ -1,5 +1,5 @@
 # engine/strategies.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 45780ad06d9f26eea747a60b6c67f98e3be09ecf..f0d6803dcf10c701bd795233e7869aa490c99eee 100644 (file)
@@ -1,5 +1,5 @@
 # engine/threadlocal.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 f896eee296ca6c4facf9caf2c9752568ecb5ffd7..392ecda116f0ab9848153b8989bbd64feb44b662 100644 (file)
@@ -1,5 +1,5 @@
 # engine/url.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 4be227c51634dd8efb9a580b68b7a967d353ea99..9cc3139afcc20f047fa54b08ca65983c826520e3 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/event.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 18041023309fde2bc80b21b35f474e122703fa0d..504dfe150e3d36eac03d5f7e68856b8c17498d15 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/events.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 57ddb11ef57f14ad2d05bc47a27114d34350f502..59a15f07981d722f4272fe9b0b4b47f02ba94e0e 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/exc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 a66421b2c7077333e053a7a4dee8715aa6d7ff65..7558ac268bd87fd2a3646d4f075912ebae56a4e3 100644 (file)
@@ -1,5 +1,5 @@
 # ext/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 eb5b3e3db6e23772d58bc48bf3f9b864ce97b644..8b3416ea98c928197f08b39a46bd3b0cb2529eff 100644 (file)
@@ -1,5 +1,5 @@
 # ext/associationproxy.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 daa9e15518d51435b9e013d79c6bbe4c62193aa0..47221fa6a4dc913155bdeb74311fc6d6d80c05dd 100644 (file)
@@ -1,5 +1,5 @@
 # ext/compiler.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 46d267faae12f3837364434ba3a014d1f319a233..61ec5334390cbfd1c320e7c0f694712981abc4d7 100755 (executable)
@@ -1,5 +1,5 @@
 # ext/declarative.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 6aafb227455d2e93188e6c1179c8e80b860e56cf..6befabe843226d27e56c84c125a78f0c588897e8 100644 (file)
@@ -1,5 +1,5 @@
 # ext/horizontal_shard.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 02a3d7d5302c0c83c27e6c43230ee510fcf3364c..fc09c172dfd82b1ecfc50650dbe46e5a3147895c 100644 (file)
@@ -1,5 +1,5 @@
 # ext/hybrid.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 8f14f51974a8baa4d35faa4d36332414458c7935..9f1bb8928399c2b039ab3754ec9337aecfcc3499 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mutable.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 ba505eb7b7d2f2b55d70a6d52b4ac8fb87c5c70d..9847861b0d1026f35fabe95d801b95b434b42cdc 100644 (file)
@@ -1,5 +1,5 @@
 # ext/orderinglist.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 077a0fd9ee39e0dc81d09a7a8e6ec433a8e4454d..ed2dec6c9c912d0d95fd4b0cd3c9653522d1909e 100644 (file)
@@ -1,5 +1,5 @@
 # ext/serializer.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 189aa1af1eea0ae318ccde7544870a1cd49c9619..302b511a12c829b33fe68395212fbf15ee5ab4ad 100644 (file)
@@ -1,5 +1,5 @@
 # ext/sqlsoup.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 39f321aa6d29cef22d7c6b7efc05fb5bcf69a338..58286e12b22d15495cb4b14305da769fc4ba8ab1 100644 (file)
@@ -1,5 +1,5 @@
 # orm/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 bfec81c9c5ad6e53077d01295ceb6d1054cc5ec8..d31b970e301b7b27d92bb7b1bebda671e0d221e5 100644 (file)
@@ -1,5 +1,5 @@
 # orm/attributes.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 7c82f3735097a0dd1b6c85f8117337f77bcdf44e..7872715eb987a7e3259c492eee468215d08990ae 100644 (file)
@@ -1,5 +1,5 @@
 # orm/collections.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 e4b0f96e9ab88ca3d8d8425bb297e14e742867d7..b3789e75861d59c3bf9a7c1f69165bf5ede0f666 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dependency.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 3d78ce7571d96fefc4ce3b985626f6fb1de31726..dfc368f0948992fb7b2ee287cdcd7347fb1281c1 100644 (file)
@@ -1,5 +1,5 @@
 # orm/deprecated_interfaces.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 6b971376a32a06ca7c8c504cdd44436b78f67440..ed0d4924e2fcb20b69d1dfbe8e6404e066537a9d 100644 (file)
@@ -1,5 +1,5 @@
 # orm/descriptor_props.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 27ca2ef4ce1c9dd8332a539d79a4f35857851b3b..edf05287055c55c8be4d495fa9600a114fc58a52 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dynamic.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 f05b92a5ae17fbd0aa70e2fd8e59847c6a45fccf..e727c17bb2d222f7adb07b20e793dd9fc6342cc6 100644 (file)
@@ -1,5 +1,5 @@
 # orm/evaluator.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 74971676d7c0b778bff8a787888c83139d1802d2..bb8e531092a001b8c62e0011787af12c6f2351e5 100644 (file)
@@ -1,5 +1,5 @@
 # orm/events.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 2accde9e9c6fb5fde1f595429126ebc1e48f1e7c..1146284f95d563ec6f8f98db4563921a3bd95606 100644 (file)
@@ -1,5 +1,5 @@
 # orm/exc.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 136bb7f014d0a6c061985af666c8d7266c291122..59d121de9865bd262fc231e6433a8b11bc228370 100644 (file)
@@ -1,5 +1,5 @@
 # orm/identity.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 89e9ae8ae284dc9f15a8784ac6073fcea7c261fd..af9ef7841ac3c325f2f0a8621d2f3f4bacdb401a 100644 (file)
@@ -1,5 +1,5 @@
 # orm/instrumentation.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 334d6d3786fb241fa39c76d13155221abe610ea7..f570c10c298d18aed31b01f356ec1a541bd163ed 100644 (file)
@@ -1,5 +1,5 @@
 # orm/interfaces.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 66341ecfb66518e28131e580019c75701f5c3d41..13b5b3e471ad77f09bf5fe9bc004fe465b2fb194 100644 (file)
@@ -1,5 +1,5 @@
 # orm/mapper.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 40032c9497caeef4fb03c1687ab82ad026fc77b8..cc06311f43a5423ee2d517a995a511ea514b4bc5 100644 (file)
@@ -1,5 +1,5 @@
 # orm/properties.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 8395540b1790916b057b3bc50a495611aee3e118..f48189098d405b9d0215b5bea2baa719710ee60e 100644 (file)
@@ -1,5 +1,5 @@
 # orm/query.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 815bda1857d471ed6e3a55fdf6b90a39fcee1818..ffc8ef4a1cb6b2c7a80977bcaa336e4bb4f749f8 100644 (file)
@@ -1,5 +1,5 @@
 # orm/scoping.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 8f366b43d4ffae7ab21440674c37b04f6fd73835..eb03a5b819b3fb2ca1e35b7229ec0adbfc134237 100644 (file)
@@ -1,5 +1,5 @@
 # orm/session.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 5d57472dddd5cef87ec1b6c7700d2464da1b8291..73e56310a64fc6a8a9a0924b74fb74400816f2de 100644 (file)
@@ -1,5 +1,5 @@
 # orm/shard.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 dbe388341762b93ac1266f99c221c646bd732f24..117341275a5d5947befec58b331a6811456d99fa 100644 (file)
@@ -1,5 +1,5 @@
 # orm/state.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 059041dd8546c437d3f498f8bfc692b8ff6f75e8..53b3f2961529cfd088e5f62ba39d0291d00d7df6 100644 (file)
@@ -1,5 +1,5 @@
 # orm/strategies.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 5ebd44fb9719adff46375e9abc51c90a3c3dbe69..b016e81a0e0b9079303cb45c4ecc3b516963ed8c 100644 (file)
@@ -1,5 +1,5 @@
 # orm/sync.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 5c1f3b1a708af21f8732d3fc54524979da1870df..757deffef01dfff89096b9764f7fcb14143d8e4f 100644 (file)
@@ -1,5 +1,5 @@
 # orm/unitofwork.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 91095ac40ebe8534071d03f3fbc4e47cb89478db..0cd5b059486be9c720cdd468f1aa88f689594066 100644 (file)
@@ -1,5 +1,5 @@
 # orm/util.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 0645c45b056ca0ee3f88a89691a3bef267114ea9..7b87cafa941e3cfc0c70cd90634c3575c95933e9 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/pool.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 5754a294abe1b6cc19b44a754970fbe9b5cc0c8d..984cfe2a364106b82c0b4843fc6fef470cd8c03a 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/schema.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 1b82847814be02ef2aef2d71df19fb5d6dda447c..e82d072c115745d418221739aab6c075c59f42ac 100644 (file)
@@ -1,5 +1,5 @@
 # sql/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 f49c0d1e9417ca5686ee21b4a1cc8ef26ec3d4c6..aa744e0c1f66092adc8156d92e2080e91d682290 100644 (file)
@@ -1,5 +1,5 @@
 # sql/compiler.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 268448bc3d4d843374c29b1e3c165b940bec13b9..15d2970c20ff1f8172cd06c7f12c18dd825e3d09 100644 (file)
@@ -1,5 +1,5 @@
 # sql/expression.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 717816656f9a80a64517f030c8e324cce3272d49..aac97cff234edd6cc2959ae6aaf034a883034174 100644 (file)
@@ -1,5 +1,5 @@
 # sql/functions.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 2fd4d2b9a1cbf084ad3143a7dae5ace0ea65f102..89f0aaee13e753d7faf5a3986d9a008508ec9b77 100644 (file)
@@ -1,5 +1,5 @@
 # sql/operators.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 221a18e5195e1540b274ed397beff7e52299e1be..33be99d87495967ae88289e52a75a3295f8385dd 100644 (file)
@@ -1,5 +1,5 @@
 # sql/util.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 b94f07f58da6f7d2e306208a0bb5ccfe6ed563ee..cdcf40aa86ba5c7ecaa4d89b15d7f7c84d406f18 100644 (file)
@@ -1,5 +1,5 @@
 # sql/visitors.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 bad181f97b573e9a3988ad89b53d75e53464c527..8c8e6ebb962dda86f9932574af6b55c8d2d6648b 100644 (file)
@@ -1,5 +1,5 @@
 # sqlalchemy/types.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 d1a72eaf249bcdcb08fbe7f9ca4fa231444674eb..b03d52a1890fd435427f35beb5305c0604614c9c 100644 (file)
@@ -1,5 +1,5 @@
 # util/__init__.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 1a965e30d11d4ca26397e77205fddaf31ab9a14f..1b8decf59f1cd3045be978fa84a2437e06838195 100644 (file)
@@ -1,5 +1,5 @@
 # util/_collections.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 18549c8b9faad6ef727e288d176076cb10b04c2c..493d14801730ef11d96b273e8a8bdce878556c0f 100644 (file)
@@ -1,5 +1,5 @@
 # util/compat.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 d9018a26d9a7cc740fa17ae5be8a78df53c7ce8c..fc156f3934b0b5e7fa2a811b59c6c91682de2fce 100644 (file)
@@ -1,5 +1,5 @@
 # util/deprecations.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 a755470171976079f831cae656483858b65eb51a..b6c89b11a05c7b5c321814a6185c351e2c1c1ec5 100644 (file)
@@ -1,5 +1,5 @@
 # util/langhelpers.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 db71759529ffa89503111efcf3994cc4866212a3..e71ceb458183b363e886664a264dfe110bb0abfb 100644 (file)
@@ -1,5 +1,5 @@
 # util/queue.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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 a5efa6388fb6103062c11781c99cfadd0aa9952f..2ba86b23d0f10ecae8866fa42c582a8156403a8a 100644 (file)
@@ -1,5 +1,5 @@
 # util/topological.py
-# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file>
+# Copyright (C) 2005-2012 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