From babf3baef034b5650535e935d30ec68467b11ea6 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sun, 2 Jan 2011 14:02:11 -0500 Subject: [PATCH] - clean up copyright, update for 2011, stamp every file with a consistent tag - AUTHORS file --- AUTHORS | 17 +++++++++++++++++ LICENSE | 2 +- lib/sqlalchemy/__init__.py | 4 ++-- lib/sqlalchemy/connectors/__init__.py | 5 +++++ lib/sqlalchemy/connectors/mxodbc.py | 6 ++++++ lib/sqlalchemy/connectors/pyodbc.py | 6 ++++++ lib/sqlalchemy/connectors/zxJDBC.py | 6 ++++++ lib/sqlalchemy/databases/__init__.py | 5 ++--- lib/sqlalchemy/dialects/__init__.py | 6 ++++++ lib/sqlalchemy/dialects/access/base.py | 3 ++- lib/sqlalchemy/dialects/firebird/__init__.py | 6 ++++++ lib/sqlalchemy/dialects/firebird/base.py | 4 ++-- lib/sqlalchemy/dialects/firebird/kinterbasdb.py | 4 ++-- lib/sqlalchemy/dialects/informix/__init__.py | 6 ++++++ lib/sqlalchemy/dialects/informix/base.py | 6 +++--- lib/sqlalchemy/dialects/informix/informixdb.py | 6 ++++++ lib/sqlalchemy/dialects/maxdb/__init__.py | 6 ++++++ lib/sqlalchemy/dialects/maxdb/base.py | 3 ++- lib/sqlalchemy/dialects/maxdb/sapdb.py | 6 ++++++ lib/sqlalchemy/dialects/mssql/__init__.py | 6 ++++++ lib/sqlalchemy/dialects/mssql/adodbapi.py | 6 ++++++ lib/sqlalchemy/dialects/mssql/base.py | 6 +++++- .../dialects/mssql/information_schema.py | 6 ++++++ lib/sqlalchemy/dialects/mssql/mxodbc.py | 6 ++++++ lib/sqlalchemy/dialects/mssql/pymssql.py | 6 ++++++ lib/sqlalchemy/dialects/mssql/pyodbc.py | 6 ++++++ lib/sqlalchemy/dialects/mssql/zxjdbc.py | 6 ++++++ lib/sqlalchemy/dialects/mysql/__init__.py | 6 ++++++ lib/sqlalchemy/dialects/mysql/base.py | 4 +--- lib/sqlalchemy/dialects/mysql/mysqlconnector.py | 6 ++++++ lib/sqlalchemy/dialects/mysql/mysqldb.py | 6 ++++++ lib/sqlalchemy/dialects/mysql/oursql.py | 6 ++++++ lib/sqlalchemy/dialects/mysql/pyodbc.py | 6 ++++++ lib/sqlalchemy/dialects/mysql/zxjdbc.py | 6 ++++++ lib/sqlalchemy/dialects/oracle/__init__.py | 6 ++++++ lib/sqlalchemy/dialects/oracle/base.py | 3 ++- lib/sqlalchemy/dialects/oracle/cx_oracle.py | 6 ++++++ lib/sqlalchemy/dialects/oracle/zxjdbc.py | 6 ++++++ lib/sqlalchemy/dialects/postgres.py | 6 ++++++ lib/sqlalchemy/dialects/postgresql/__init__.py | 6 ++++++ lib/sqlalchemy/dialects/postgresql/base.py | 4 ++-- lib/sqlalchemy/dialects/postgresql/pg8000.py | 6 ++++++ lib/sqlalchemy/dialects/postgresql/psycopg2.py | 6 ++++++ .../dialects/postgresql/pypostgresql.py | 6 ++++++ lib/sqlalchemy/dialects/postgresql/zxjdbc.py | 6 ++++++ lib/sqlalchemy/dialects/sqlite/__init__.py | 6 ++++++ lib/sqlalchemy/dialects/sqlite/base.py | 5 +++-- lib/sqlalchemy/dialects/sqlite/pysqlite.py | 6 ++++++ lib/sqlalchemy/dialects/sybase/__init__.py | 6 ++++++ lib/sqlalchemy/dialects/sybase/base.py | 2 +- lib/sqlalchemy/dialects/sybase/mxodbc.py | 6 ++++++ lib/sqlalchemy/dialects/sybase/pyodbc.py | 6 ++++++ lib/sqlalchemy/dialects/sybase/pysybase.py | 4 ++-- lib/sqlalchemy/engine/__init__.py | 2 +- lib/sqlalchemy/engine/base.py | 2 +- lib/sqlalchemy/engine/ddl.py | 2 +- lib/sqlalchemy/engine/default.py | 2 +- lib/sqlalchemy/engine/reflection.py | 6 ++++++ lib/sqlalchemy/engine/strategies.py | 6 ++++++ lib/sqlalchemy/engine/threadlocal.py | 6 ++++++ lib/sqlalchemy/engine/url.py | 6 ++++++ lib/sqlalchemy/exc.py | 3 ++- lib/sqlalchemy/ext/__init__.py | 5 +++++ lib/sqlalchemy/ext/associationproxy.py | 6 ++++++ lib/sqlalchemy/ext/compiler.py | 6 ++++++ lib/sqlalchemy/ext/declarative.py | 6 ++++++ lib/sqlalchemy/ext/horizontal_shard.py | 4 ++-- lib/sqlalchemy/ext/orderinglist.py | 6 ++++++ lib/sqlalchemy/ext/serializer.py | 6 ++++++ lib/sqlalchemy/ext/sqlsoup.py | 6 ++++++ lib/sqlalchemy/interfaces.py | 3 ++- lib/sqlalchemy/log.py | 4 ++-- lib/sqlalchemy/orm/__init__.py | 5 ++--- lib/sqlalchemy/orm/attributes.py | 5 +++-- lib/sqlalchemy/orm/collections.py | 6 ++++++ lib/sqlalchemy/orm/dependency.py | 3 +-- lib/sqlalchemy/orm/dynamic.py | 4 ++-- lib/sqlalchemy/orm/evaluator.py | 6 ++++++ lib/sqlalchemy/orm/exc.py | 4 ++-- lib/sqlalchemy/orm/identity.py | 4 ++-- lib/sqlalchemy/orm/interfaces.py | 5 ++--- lib/sqlalchemy/orm/mapper.py | 4 ++-- lib/sqlalchemy/orm/properties.py | 5 ++--- lib/sqlalchemy/orm/query.py | 2 +- lib/sqlalchemy/orm/scoping.py | 4 ++-- lib/sqlalchemy/orm/session.py | 4 ++-- lib/sqlalchemy/orm/shard.py | 4 ++-- lib/sqlalchemy/orm/state.py | 6 ++++++ lib/sqlalchemy/orm/strategies.py | 4 ++-- lib/sqlalchemy/orm/sync.py | 4 ++-- lib/sqlalchemy/orm/unitofwork.py | 2 +- lib/sqlalchemy/orm/util.py | 5 ++--- lib/sqlalchemy/pool.py | 5 ++--- lib/sqlalchemy/processors.py | 3 ++- lib/sqlalchemy/queue.py | 6 ++++++ lib/sqlalchemy/schema.py | 5 ++--- lib/sqlalchemy/sql/__init__.py | 6 ++++++ lib/sqlalchemy/sql/compiler.py | 4 ++-- lib/sqlalchemy/sql/expression.py | 4 ++-- lib/sqlalchemy/sql/functions.py | 6 ++++++ lib/sqlalchemy/sql/operators.py | 6 ++++++ lib/sqlalchemy/sql/util.py | 6 ++++++ lib/sqlalchemy/sql/visitors.py | 6 ++++++ lib/sqlalchemy/test/__init__.py | 6 ++++++ lib/sqlalchemy/test/assertsql.py | 5 +++++ lib/sqlalchemy/test/engines.py | 6 ++++++ lib/sqlalchemy/test/entities.py | 6 ++++++ lib/sqlalchemy/test/orm.py | 6 ++++++ lib/sqlalchemy/test/pickleable.py | 6 ++++++ lib/sqlalchemy/test/profiling.py | 6 ++++++ lib/sqlalchemy/test/requires.py | 6 ++++++ lib/sqlalchemy/test/schema.py | 6 ++++++ lib/sqlalchemy/test/testing.py | 6 ++++++ lib/sqlalchemy/test/util.py | 6 ++++++ lib/sqlalchemy/topological.py | 4 ++-- lib/sqlalchemy/types.py | 4 ++-- lib/sqlalchemy/util.py | 4 ++-- 117 files changed, 514 insertions(+), 90 deletions(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000000..a6ad7a7a8b --- /dev/null +++ b/AUTHORS @@ -0,0 +1,17 @@ +SQLAlchemy was created by Michael Bayer. + +Major contributing authors include: + +- Michael Bayer +- Jason Kirtland +- Gaetan de Menten +- Michael Trier +- Philip Jenvey +- Ants Aasma +- Paul Johnston +- Jonathan Ellis + +For a larger list of SQLAlchemy contributors over time, see: + +http://www.sqlalchemy.org/trac/wiki/Contributors + diff --git a/LICENSE b/LICENSE index 99dd8f9274..09468670b3 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ This is the MIT license: http://www.opensource.org/licenses/mit-license.php -Copyright (c) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer and contributors. +Copyright (c) 2005-2011 the SQLAlchemy authors and contributors . SQLAlchemy is a trademark of Michael Bayer. Permission is hereby granted, free of charge, to any person obtaining a copy of this diff --git a/lib/sqlalchemy/__init__.py b/lib/sqlalchemy/__init__.py index 5eea53ac66..1e3c49ddbe 100644 --- a/lib/sqlalchemy/__init__.py +++ b/lib/sqlalchemy/__init__.py @@ -1,5 +1,5 @@ -# __init__.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# sqlalchemy/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/connectors/__init__.py b/lib/sqlalchemy/connectors/__init__.py index f1383ad829..0c57304505 100644 --- a/lib/sqlalchemy/connectors/__init__.py +++ b/lib/sqlalchemy/connectors/__init__.py @@ -1,3 +1,8 @@ +# connectors/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php class Connector(object): diff --git a/lib/sqlalchemy/connectors/mxodbc.py b/lib/sqlalchemy/connectors/mxodbc.py index 4c4b0b0705..816b5f550d 100644 --- a/lib/sqlalchemy/connectors/mxodbc.py +++ b/lib/sqlalchemy/connectors/mxodbc.py @@ -1,3 +1,9 @@ +# connectors/mxodbc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """ Provide an SQLALchemy connector for the eGenix mxODBC commercial Python adapter for ODBC. This is not a free product, but eGenix diff --git a/lib/sqlalchemy/connectors/pyodbc.py b/lib/sqlalchemy/connectors/pyodbc.py index 9f56955b3e..bf6729e888 100644 --- a/lib/sqlalchemy/connectors/pyodbc.py +++ b/lib/sqlalchemy/connectors/pyodbc.py @@ -1,3 +1,9 @@ +# connectors/pyodbc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.connectors import Connector from sqlalchemy.util import asbool diff --git a/lib/sqlalchemy/connectors/zxJDBC.py b/lib/sqlalchemy/connectors/zxJDBC.py index 0b15bfddf1..941dd17aee 100644 --- a/lib/sqlalchemy/connectors/zxJDBC.py +++ b/lib/sqlalchemy/connectors/zxJDBC.py @@ -1,3 +1,9 @@ +# connectors/zxJDBC.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + import sys from sqlalchemy.connectors import Connector diff --git a/lib/sqlalchemy/databases/__init__.py b/lib/sqlalchemy/databases/__init__.py index e7e03d26a8..0d53149f0f 100644 --- a/lib/sqlalchemy/databases/__init__.py +++ b/lib/sqlalchemy/databases/__init__.py @@ -1,6 +1,5 @@ -# __init__.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer -# mike_mp@zzzcomputing.com +# databases/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/dialects/__init__.py b/lib/sqlalchemy/dialects/__init__.py index 386af943b4..33eeefcec2 100644 --- a/lib/sqlalchemy/dialects/__init__.py +++ b/lib/sqlalchemy/dialects/__init__.py @@ -1,3 +1,9 @@ +# dialects/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + __all__ = ( # 'access', 'firebird', diff --git a/lib/sqlalchemy/dialects/access/base.py b/lib/sqlalchemy/dialects/access/base.py index 75ea912874..4df4d20235 100644 --- a/lib/sqlalchemy/dialects/access/base.py +++ b/lib/sqlalchemy/dialects/access/base.py @@ -1,4 +1,5 @@ -# access.py +# access/base.py +# Copyright (C) 2007-2011 the SQLAlchemy authors and contributors # Copyright (C) 2007 Paul Johnston, paj@pajhome.org.uk # Portions derived from jet2sql.py by Matt Keranen, mksql@yahoo.com # diff --git a/lib/sqlalchemy/dialects/firebird/__init__.py b/lib/sqlalchemy/dialects/firebird/__init__.py index f39e93c144..1fdedbafa5 100644 --- a/lib/sqlalchemy/dialects/firebird/__init__.py +++ b/lib/sqlalchemy/dialects/firebird/__init__.py @@ -1,3 +1,9 @@ +# firebird/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.dialects.firebird import base, kinterbasdb base.dialect = kinterbasdb.dialect diff --git a/lib/sqlalchemy/dialects/firebird/base.py b/lib/sqlalchemy/dialects/firebird/base.py index bb4cc2b094..d7dcd0f14e 100644 --- a/lib/sqlalchemy/dialects/firebird/base.py +++ b/lib/sqlalchemy/dialects/firebird/base.py @@ -1,5 +1,5 @@ -# firebird.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# firebird/base.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/dialects/firebird/kinterbasdb.py b/lib/sqlalchemy/dialects/firebird/kinterbasdb.py index c43c100c4d..a2624534c0 100644 --- a/lib/sqlalchemy/dialects/firebird/kinterbasdb.py +++ b/lib/sqlalchemy/dialects/firebird/kinterbasdb.py @@ -1,5 +1,5 @@ -# kinterbasdb.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# firebird/kinterbasdb.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/dialects/informix/__init__.py b/lib/sqlalchemy/dialects/informix/__init__.py index f2fcc76d4c..9dfd0ca5b0 100644 --- a/lib/sqlalchemy/dialects/informix/__init__.py +++ b/lib/sqlalchemy/dialects/informix/__init__.py @@ -1,3 +1,9 @@ +# informix/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.dialects.informix import base, informixdb base.dialect = informixdb.dialect \ No newline at end of file diff --git a/lib/sqlalchemy/dialects/informix/base.py b/lib/sqlalchemy/dialects/informix/base.py index 9aa23173b9..a97b445a3e 100644 --- a/lib/sqlalchemy/dialects/informix/base.py +++ b/lib/sqlalchemy/dialects/informix/base.py @@ -1,10 +1,10 @@ -# informix.py -# Copyright (C) 2005,2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com -# +# informix/base.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # coding: gbk # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the Informix database. This dialect is mostly functional as of SQLAlchemy 0.6.5. diff --git a/lib/sqlalchemy/dialects/informix/informixdb.py b/lib/sqlalchemy/dialects/informix/informixdb.py index f11c57bb60..150a69d7f6 100644 --- a/lib/sqlalchemy/dialects/informix/informixdb.py +++ b/lib/sqlalchemy/dialects/informix/informixdb.py @@ -1,3 +1,9 @@ +# informix/informixdb.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """ Support for the informixdb DBAPI. diff --git a/lib/sqlalchemy/dialects/maxdb/__init__.py b/lib/sqlalchemy/dialects/maxdb/__init__.py index 3f12448b79..0a39965bca 100644 --- a/lib/sqlalchemy/dialects/maxdb/__init__.py +++ b/lib/sqlalchemy/dialects/maxdb/__init__.py @@ -1,3 +1,9 @@ +# maxdb/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.dialects.maxdb import base, sapdb base.dialect = sapdb.dialect \ No newline at end of file diff --git a/lib/sqlalchemy/dialects/maxdb/base.py b/lib/sqlalchemy/dialects/maxdb/base.py index 487edc2ca7..c8d593a516 100644 --- a/lib/sqlalchemy/dialects/maxdb/base.py +++ b/lib/sqlalchemy/dialects/maxdb/base.py @@ -1,4 +1,5 @@ -# maxdb.py +# maxdb/base.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/dialects/maxdb/sapdb.py b/lib/sqlalchemy/dialects/maxdb/sapdb.py index f363239962..4fd9dd418a 100644 --- a/lib/sqlalchemy/dialects/maxdb/sapdb.py +++ b/lib/sqlalchemy/dialects/maxdb/sapdb.py @@ -1,3 +1,9 @@ +# maxdb/sapdb.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.dialects.maxdb.base import MaxDBDialect class MaxDBDialect_sapdb(MaxDBDialect): diff --git a/lib/sqlalchemy/dialects/mssql/__init__.py b/lib/sqlalchemy/dialects/mssql/__init__.py index 6fe6a3e5a5..6e7bae44b8 100644 --- a/lib/sqlalchemy/dialects/mssql/__init__.py +++ b/lib/sqlalchemy/dialects/mssql/__init__.py @@ -1,3 +1,9 @@ +# mssql/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.dialects.mssql import base, pyodbc, adodbapi, \ pymssql, zxjdbc, mxodbc diff --git a/lib/sqlalchemy/dialects/mssql/adodbapi.py b/lib/sqlalchemy/dialects/mssql/adodbapi.py index 24fa22449c..b042bfe66a 100644 --- a/lib/sqlalchemy/dialects/mssql/adodbapi.py +++ b/lib/sqlalchemy/dialects/mssql/adodbapi.py @@ -1,3 +1,9 @@ +# mssql/adodbapi.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """ The adodbapi dialect is not implemented for 0.6 at this time. diff --git a/lib/sqlalchemy/dialects/mssql/base.py b/lib/sqlalchemy/dialects/mssql/base.py index 261138d92e..7590626caf 100644 --- a/lib/sqlalchemy/dialects/mssql/base.py +++ b/lib/sqlalchemy/dialects/mssql/base.py @@ -1,4 +1,8 @@ -# mssql.py +# mssql/base.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php """Support for the Microsoft SQL Server database. diff --git a/lib/sqlalchemy/dialects/mssql/information_schema.py b/lib/sqlalchemy/dialects/mssql/information_schema.py index 4dd6436cda..1a053a7b56 100644 --- a/lib/sqlalchemy/dialects/mssql/information_schema.py +++ b/lib/sqlalchemy/dialects/mssql/information_schema.py @@ -1,3 +1,9 @@ +# mssql/information_schema.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + # TODO: should be using the sys. catalog with SQL Server, not information schema from sqlalchemy import Table, MetaData, Column, ForeignKey diff --git a/lib/sqlalchemy/dialects/mssql/mxodbc.py b/lib/sqlalchemy/dialects/mssql/mxodbc.py index 64e4ab9dba..56dbcacfc0 100644 --- a/lib/sqlalchemy/dialects/mssql/mxodbc.py +++ b/lib/sqlalchemy/dialects/mssql/mxodbc.py @@ -1,3 +1,9 @@ +# mssql/mxodbc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """ Support for MS-SQL via mxODBC. diff --git a/lib/sqlalchemy/dialects/mssql/pymssql.py b/lib/sqlalchemy/dialects/mssql/pymssql.py index c5f4719426..6409ba477c 100644 --- a/lib/sqlalchemy/dialects/mssql/pymssql.py +++ b/lib/sqlalchemy/dialects/mssql/pymssql.py @@ -1,3 +1,9 @@ +# mssql/pymssql.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """ Support for the pymssql dialect. diff --git a/lib/sqlalchemy/dialects/mssql/pyodbc.py b/lib/sqlalchemy/dialects/mssql/pyodbc.py index 5bba245144..c026f6069c 100644 --- a/lib/sqlalchemy/dialects/mssql/pyodbc.py +++ b/lib/sqlalchemy/dialects/mssql/pyodbc.py @@ -1,3 +1,9 @@ +# mssql/pyodbc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """ Support for MS-SQL via pyodbc. diff --git a/lib/sqlalchemy/dialects/mssql/zxjdbc.py b/lib/sqlalchemy/dialects/mssql/zxjdbc.py index 4ad5ab8c65..c293adbe6b 100644 --- a/lib/sqlalchemy/dialects/mssql/zxjdbc.py +++ b/lib/sqlalchemy/dialects/mssql/zxjdbc.py @@ -1,3 +1,9 @@ +# mssql/zxjdbc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the Microsoft SQL Server database via the zxjdbc JDBC connector. diff --git a/lib/sqlalchemy/dialects/mysql/__init__.py b/lib/sqlalchemy/dialects/mysql/__init__.py index edf0e876a4..6eb54588a3 100644 --- a/lib/sqlalchemy/dialects/mysql/__init__.py +++ b/lib/sqlalchemy/dialects/mysql/__init__.py @@ -1,3 +1,9 @@ +# mysql/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.dialects.mysql import base, mysqldb, oursql, \ pyodbc, zxjdbc, mysqlconnector diff --git a/lib/sqlalchemy/dialects/mysql/base.py b/lib/sqlalchemy/dialects/mysql/base.py index 660d201d18..bb2f081513 100644 --- a/lib/sqlalchemy/dialects/mysql/base.py +++ b/lib/sqlalchemy/dialects/mysql/base.py @@ -1,7 +1,5 @@ -# -*- fill-column: 78 -*- # mysql/base.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com -# and Jason Kirtland. +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/dialects/mysql/mysqlconnector.py b/lib/sqlalchemy/dialects/mysql/mysqlconnector.py index bd9c9b8e28..d3ec1f5cf4 100644 --- a/lib/sqlalchemy/dialects/mysql/mysqlconnector.py +++ b/lib/sqlalchemy/dialects/mysql/mysqlconnector.py @@ -1,3 +1,9 @@ +# mysql/mysqlconnector.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the MySQL database via the MySQL Connector/Python adapter. MySQL Connector/Python is available at: diff --git a/lib/sqlalchemy/dialects/mysql/mysqldb.py b/lib/sqlalchemy/dialects/mysql/mysqldb.py index 54f10352f7..ced8730394 100644 --- a/lib/sqlalchemy/dialects/mysql/mysqldb.py +++ b/lib/sqlalchemy/dialects/mysql/mysqldb.py @@ -1,3 +1,9 @@ +# mysql/mysqldb.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the MySQL database via the MySQL-python adapter. MySQL-Python is available at: diff --git a/lib/sqlalchemy/dialects/mysql/oursql.py b/lib/sqlalchemy/dialects/mysql/oursql.py index 41c5414f2c..b4d9485d36 100644 --- a/lib/sqlalchemy/dialects/mysql/oursql.py +++ b/lib/sqlalchemy/dialects/mysql/oursql.py @@ -1,3 +1,9 @@ +# mysql/oursql.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the MySQL database via the oursql adapter. OurSQL is available at: diff --git a/lib/sqlalchemy/dialects/mysql/pyodbc.py b/lib/sqlalchemy/dialects/mysql/pyodbc.py index eb7b23c07d..d103c56c85 100644 --- a/lib/sqlalchemy/dialects/mysql/pyodbc.py +++ b/lib/sqlalchemy/dialects/mysql/pyodbc.py @@ -1,3 +1,9 @@ +# mysql/pyodbc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the MySQL database via the pyodbc adapter. pyodbc is available at: diff --git a/lib/sqlalchemy/dialects/mysql/zxjdbc.py b/lib/sqlalchemy/dialects/mysql/zxjdbc.py index 0c0c39b673..a56fb6a55c 100644 --- a/lib/sqlalchemy/dialects/mysql/zxjdbc.py +++ b/lib/sqlalchemy/dialects/mysql/zxjdbc.py @@ -1,3 +1,9 @@ +# mysql/zxjdbc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the MySQL database via Jython's zxjdbc JDBC connector. JDBC Driver diff --git a/lib/sqlalchemy/dialects/oracle/__init__.py b/lib/sqlalchemy/dialects/oracle/__init__.py index f6734013dc..59267c5e76 100644 --- a/lib/sqlalchemy/dialects/oracle/__init__.py +++ b/lib/sqlalchemy/dialects/oracle/__init__.py @@ -1,3 +1,9 @@ +# oracle/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.dialects.oracle import base, cx_oracle, zxjdbc base.dialect = cx_oracle.dialect diff --git a/lib/sqlalchemy/dialects/oracle/base.py b/lib/sqlalchemy/dialects/oracle/base.py index 2569726964..2e06811c09 100644 --- a/lib/sqlalchemy/dialects/oracle/base.py +++ b/lib/sqlalchemy/dialects/oracle/base.py @@ -1,8 +1,9 @@ # oracle/base.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the Oracle database. Oracle version 8 through current (11g at the time of this writing) are supported. diff --git a/lib/sqlalchemy/dialects/oracle/cx_oracle.py b/lib/sqlalchemy/dialects/oracle/cx_oracle.py index 87a84e514d..42ccb270ad 100644 --- a/lib/sqlalchemy/dialects/oracle/cx_oracle.py +++ b/lib/sqlalchemy/dialects/oracle/cx_oracle.py @@ -1,3 +1,9 @@ +# oracle/cx_oracle.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the Oracle database via the cx_oracle driver. Driver diff --git a/lib/sqlalchemy/dialects/oracle/zxjdbc.py b/lib/sqlalchemy/dialects/oracle/zxjdbc.py index d742654a0d..a8c4356687 100644 --- a/lib/sqlalchemy/dialects/oracle/zxjdbc.py +++ b/lib/sqlalchemy/dialects/oracle/zxjdbc.py @@ -1,3 +1,9 @@ +# oracle/zxjdbc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the Oracle database via the zxjdbc JDBC connector. JDBC Driver diff --git a/lib/sqlalchemy/dialects/postgres.py b/lib/sqlalchemy/dialects/postgres.py index 0c1d3fd25a..fdf818a994 100644 --- a/lib/sqlalchemy/dialects/postgres.py +++ b/lib/sqlalchemy/dialects/postgres.py @@ -1,3 +1,9 @@ +# dialects/postgres.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + # backwards compat with the old name from sqlalchemy.util import warn_deprecated diff --git a/lib/sqlalchemy/dialects/postgresql/__init__.py b/lib/sqlalchemy/dialects/postgresql/__init__.py index 6aca1e1b83..481a7fb76b 100644 --- a/lib/sqlalchemy/dialects/postgresql/__init__.py +++ b/lib/sqlalchemy/dialects/postgresql/__init__.py @@ -1,3 +1,9 @@ +# postgresql/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.dialects.postgresql import base, psycopg2, pg8000, pypostgresql, zxjdbc base.dialect = psycopg2.dialect diff --git a/lib/sqlalchemy/dialects/postgresql/base.py b/lib/sqlalchemy/dialects/postgresql/base.py index 9e693cbca9..67510926cc 100644 --- a/lib/sqlalchemy/dialects/postgresql/base.py +++ b/lib/sqlalchemy/dialects/postgresql/base.py @@ -1,5 +1,5 @@ -# postgresql.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# postgresql/base.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/dialects/postgresql/pg8000.py b/lib/sqlalchemy/dialects/postgresql/pg8000.py index 7b1d8e6a74..932479c95e 100644 --- a/lib/sqlalchemy/dialects/postgresql/pg8000.py +++ b/lib/sqlalchemy/dialects/postgresql/pg8000.py @@ -1,3 +1,9 @@ +# postgresql/pg8000.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the PostgreSQL database via the pg8000 driver. Connecting diff --git a/lib/sqlalchemy/dialects/postgresql/psycopg2.py b/lib/sqlalchemy/dialects/postgresql/psycopg2.py index 7c5562064d..0804ce24ad 100644 --- a/lib/sqlalchemy/dialects/postgresql/psycopg2.py +++ b/lib/sqlalchemy/dialects/postgresql/psycopg2.py @@ -1,3 +1,9 @@ +# postgresql/psycopg2.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the PostgreSQL database via the psycopg2 driver. Driver diff --git a/lib/sqlalchemy/dialects/postgresql/pypostgresql.py b/lib/sqlalchemy/dialects/postgresql/pypostgresql.py index b8f7991d5f..cad97c0521 100644 --- a/lib/sqlalchemy/dialects/postgresql/pypostgresql.py +++ b/lib/sqlalchemy/dialects/postgresql/pypostgresql.py @@ -1,3 +1,9 @@ +# postgresql/pypostgresql.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the PostgreSQL database via py-postgresql. Connecting diff --git a/lib/sqlalchemy/dialects/postgresql/zxjdbc.py b/lib/sqlalchemy/dialects/postgresql/zxjdbc.py index a886901c82..a9a38d234b 100644 --- a/lib/sqlalchemy/dialects/postgresql/zxjdbc.py +++ b/lib/sqlalchemy/dialects/postgresql/zxjdbc.py @@ -1,3 +1,9 @@ +# postgresql/zxjdbc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the PostgreSQL database via the zxjdbc JDBC connector. JDBC Driver diff --git a/lib/sqlalchemy/dialects/sqlite/__init__.py b/lib/sqlalchemy/dialects/sqlite/__init__.py index fbbde173ed..9d39bd8251 100644 --- a/lib/sqlalchemy/dialects/sqlite/__init__.py +++ b/lib/sqlalchemy/dialects/sqlite/__init__.py @@ -1,3 +1,9 @@ +# sqlite/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.dialects.sqlite import base, pysqlite # default dialect diff --git a/lib/sqlalchemy/dialects/sqlite/base.py b/lib/sqlalchemy/dialects/sqlite/base.py index 994904b6ac..ad20c53738 100644 --- a/lib/sqlalchemy/dialects/sqlite/base.py +++ b/lib/sqlalchemy/dialects/sqlite/base.py @@ -1,8 +1,9 @@ -# sqlite.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# sqlite/base.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the SQLite database. For information on connecting using a specific driver, see the documentation diff --git a/lib/sqlalchemy/dialects/sqlite/pysqlite.py b/lib/sqlalchemy/dialects/sqlite/pysqlite.py index b2295f49b4..1e8e655580 100644 --- a/lib/sqlalchemy/dialects/sqlite/pysqlite.py +++ b/lib/sqlalchemy/dialects/sqlite/pysqlite.py @@ -1,3 +1,9 @@ +# sqlite/pysqlite.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for the SQLite database via pysqlite. Note that pysqlite is the same driver as the ``sqlite3`` diff --git a/lib/sqlalchemy/dialects/sybase/__init__.py b/lib/sqlalchemy/dialects/sybase/__init__.py index 400bb29765..1481c6d9ed 100644 --- a/lib/sqlalchemy/dialects/sybase/__init__.py +++ b/lib/sqlalchemy/dialects/sybase/__init__.py @@ -1,3 +1,9 @@ +# sybase/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.dialects.sybase import base, pysybase, pyodbc diff --git a/lib/sqlalchemy/dialects/sybase/base.py b/lib/sqlalchemy/dialects/sybase/base.py index b0b1bbff4d..24e2dfbb4d 100644 --- a/lib/sqlalchemy/dialects/sybase/base.py +++ b/lib/sqlalchemy/dialects/sybase/base.py @@ -1,5 +1,5 @@ # sybase/base.py -# Copyright (C) 2010 Michael Bayer mike_mp@zzzcomputing.com +# Copyright (C) 2010-2011 the SQLAlchemy authors and contributors # get_select_precolumns(), limit_clause() implementation # copyright (C) 2007 Fisch Asset Management # AG http://www.fam.ch, with coding by Alexander Houben diff --git a/lib/sqlalchemy/dialects/sybase/mxodbc.py b/lib/sqlalchemy/dialects/sybase/mxodbc.py index 14817998fc..756c0b28ed 100644 --- a/lib/sqlalchemy/dialects/sybase/mxodbc.py +++ b/lib/sqlalchemy/dialects/sybase/mxodbc.py @@ -1,3 +1,9 @@ +# sybase/mxodbc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """ Support for Sybase via mxodbc. diff --git a/lib/sqlalchemy/dialects/sybase/pyodbc.py b/lib/sqlalchemy/dialects/sybase/pyodbc.py index 1d955a7d9c..5f6def3f88 100644 --- a/lib/sqlalchemy/dialects/sybase/pyodbc.py +++ b/lib/sqlalchemy/dialects/sybase/pyodbc.py @@ -1,3 +1,9 @@ +# sybase/pyodbc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """ Support for Sybase via pyodbc. diff --git a/lib/sqlalchemy/dialects/sybase/pysybase.py b/lib/sqlalchemy/dialects/sybase/pysybase.py index 4803761c47..d6f5c3b6b9 100644 --- a/lib/sqlalchemy/dialects/sybase/pysybase.py +++ b/lib/sqlalchemy/dialects/sybase/pysybase.py @@ -1,5 +1,5 @@ -# pysybase.py -# Copyright (C) 2010 Michael Bayer mike_mp@zzzcomputing.com +# sybase/pysybase.py +# Copyright (C) 2010-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/engine/__init__.py b/lib/sqlalchemy/engine/__init__.py index 36b86cabf0..9dd7f0653e 100644 --- a/lib/sqlalchemy/engine/__init__.py +++ b/lib/sqlalchemy/engine/__init__.py @@ -1,5 +1,5 @@ # engine/__init__.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index aa24a6529f..2184529b39 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -1,5 +1,5 @@ # engine/base.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/engine/ddl.py b/lib/sqlalchemy/engine/ddl.py index 74205dbb03..bf47d4f221 100644 --- a/lib/sqlalchemy/engine/ddl.py +++ b/lib/sqlalchemy/engine/ddl.py @@ -1,5 +1,5 @@ # engine/ddl.py -# Copyright (C) 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# Copyright (C) 2009-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/engine/default.py b/lib/sqlalchemy/engine/default.py index 13755d49a3..770a549a5b 100644 --- a/lib/sqlalchemy/engine/default.py +++ b/lib/sqlalchemy/engine/default.py @@ -1,5 +1,5 @@ # engine/default.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/engine/reflection.py b/lib/sqlalchemy/engine/reflection.py index def889e6d9..964e9fbeee 100644 --- a/lib/sqlalchemy/engine/reflection.py +++ b/lib/sqlalchemy/engine/reflection.py @@ -1,3 +1,9 @@ +# engine/reflection.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Provides an abstraction for obtaining database schema information. Usage Notes: diff --git a/lib/sqlalchemy/engine/strategies.py b/lib/sqlalchemy/engine/strategies.py index 7fc39b91a9..780921e526 100644 --- a/lib/sqlalchemy/engine/strategies.py +++ b/lib/sqlalchemy/engine/strategies.py @@ -1,3 +1,9 @@ +# engine/strategies.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Strategies for creating new instances of Engine types. These are semi-private implementation classes which provide the diff --git a/lib/sqlalchemy/engine/threadlocal.py b/lib/sqlalchemy/engine/threadlocal.py index 55f2c88cf2..4fef37bf1c 100644 --- a/lib/sqlalchemy/engine/threadlocal.py +++ b/lib/sqlalchemy/engine/threadlocal.py @@ -1,3 +1,9 @@ +# engine/threadlocal.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Provides a thread-local transactional wrapper around the root Engine class. The ``threadlocal`` module is invoked when using the ``strategy="threadlocal"`` flag diff --git a/lib/sqlalchemy/engine/url.py b/lib/sqlalchemy/engine/url.py index 5d658d7fc6..199b37c46a 100644 --- a/lib/sqlalchemy/engine/url.py +++ b/lib/sqlalchemy/engine/url.py @@ -1,3 +1,9 @@ +# engine/url.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Provides the :class:`~sqlalchemy.engine.url.URL` class which encapsulates information about a database connection specification. diff --git a/lib/sqlalchemy/exc.py b/lib/sqlalchemy/exc.py index 42ba226ee0..1eb5bf9160 100644 --- a/lib/sqlalchemy/exc.py +++ b/lib/sqlalchemy/exc.py @@ -1,4 +1,5 @@ -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# sqlalchemy/exc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/ext/__init__.py b/lib/sqlalchemy/ext/__init__.py index 8b13789179..a66421b2c7 100644 --- a/lib/sqlalchemy/ext/__init__.py +++ b/lib/sqlalchemy/ext/__init__.py @@ -1 +1,6 @@ +# ext/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/ext/associationproxy.py b/lib/sqlalchemy/ext/associationproxy.py index c7437d7221..bc62c6efaf 100644 --- a/lib/sqlalchemy/ext/associationproxy.py +++ b/lib/sqlalchemy/ext/associationproxy.py @@ -1,3 +1,9 @@ +# ext/associationproxy.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Contain the ``AssociationProxy`` class. The ``AssociationProxy`` is a Python property object which provides diff --git a/lib/sqlalchemy/ext/compiler.py b/lib/sqlalchemy/ext/compiler.py index 1bf4b14471..e6a6ca744e 100644 --- a/lib/sqlalchemy/ext/compiler.py +++ b/lib/sqlalchemy/ext/compiler.py @@ -1,3 +1,9 @@ +# ext/compiler.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Provides an API for creation of custom ClauseElements and compilers. Synopsis diff --git a/lib/sqlalchemy/ext/declarative.py b/lib/sqlalchemy/ext/declarative.py index 3c6cab59af..0ad8ecf0d3 100755 --- a/lib/sqlalchemy/ext/declarative.py +++ b/lib/sqlalchemy/ext/declarative.py @@ -1,3 +1,9 @@ +# ext/declarative.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """ Synopsis ======== diff --git a/lib/sqlalchemy/ext/horizontal_shard.py b/lib/sqlalchemy/ext/horizontal_shard.py index 78e3f59530..ac62738b1f 100644 --- a/lib/sqlalchemy/ext/horizontal_shard.py +++ b/lib/sqlalchemy/ext/horizontal_shard.py @@ -1,5 +1,5 @@ -# horizontal_shard.py -# Copyright (C) the SQLAlchemy authors and contributors +# ext/horizontal_shard.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/ext/orderinglist.py b/lib/sqlalchemy/ext/orderinglist.py index 0d2c3ae5d7..062172bcc1 100644 --- a/lib/sqlalchemy/ext/orderinglist.py +++ b/lib/sqlalchemy/ext/orderinglist.py @@ -1,3 +1,9 @@ +# ext/orderinglist.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """A custom list that manages index/position information for its children. :author: Jason Kirtland diff --git a/lib/sqlalchemy/ext/serializer.py b/lib/sqlalchemy/ext/serializer.py index 354f28c59a..8c098c3dff 100644 --- a/lib/sqlalchemy/ext/serializer.py +++ b/lib/sqlalchemy/ext/serializer.py @@ -1,3 +1,9 @@ +# ext/serializer.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Serializer/Deserializer objects for usage with SQLAlchemy query structures, allowing "contextual" deserialization. diff --git a/lib/sqlalchemy/ext/sqlsoup.py b/lib/sqlalchemy/ext/sqlsoup.py index 9ff503dfa7..d56a9efad3 100644 --- a/lib/sqlalchemy/ext/sqlsoup.py +++ b/lib/sqlalchemy/ext/sqlsoup.py @@ -1,3 +1,9 @@ +# ext/sqlsoup.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """ Introduction ============ diff --git a/lib/sqlalchemy/interfaces.py b/lib/sqlalchemy/interfaces.py index c2a267d5f3..15452beaf5 100644 --- a/lib/sqlalchemy/interfaces.py +++ b/lib/sqlalchemy/interfaces.py @@ -1,4 +1,5 @@ -# interfaces.py +# sqlalchemy/interfaces.py +# Copyright (C) 2007-2011 the SQLAlchemy authors and contributors # Copyright (C) 2007 Jason Kirtland jek@discorporate.us # # This module is part of SQLAlchemy and is released under diff --git a/lib/sqlalchemy/log.py b/lib/sqlalchemy/log.py index 49c779fed8..2ba930ffc7 100644 --- a/lib/sqlalchemy/log.py +++ b/lib/sqlalchemy/log.py @@ -1,5 +1,5 @@ -# log.py - adapt python logging module to SQLAlchemy -# Copyright (C) 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# sqlalchemy/log.py +# Copyright (C) 2006-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/__init__.py b/lib/sqlalchemy/orm/__init__.py index 94fbabc49b..44eaca7b38 100644 --- a/lib/sqlalchemy/orm/__init__.py +++ b/lib/sqlalchemy/orm/__init__.py @@ -1,6 +1,5 @@ -# sqlalchemy/orm/__init__.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer -# mike_mp@zzzcomputing.com +# orm/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/attributes.py b/lib/sqlalchemy/orm/attributes.py index d3a104f834..6155298b09 100644 --- a/lib/sqlalchemy/orm/attributes.py +++ b/lib/sqlalchemy/orm/attributes.py @@ -1,8 +1,9 @@ -# attributes.py - manages object attributes -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# orm/attributes.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php + """Defines SQLAlchemy's system of class instrumentation.. This module is usually not directly visible to user applications, but diff --git a/lib/sqlalchemy/orm/collections.py b/lib/sqlalchemy/orm/collections.py index b523295232..59544419bc 100644 --- a/lib/sqlalchemy/orm/collections.py +++ b/lib/sqlalchemy/orm/collections.py @@ -1,3 +1,9 @@ +# orm/collections.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Support for collections of mapped entities. The collections package supplies the machinery used to inform the ORM of diff --git a/lib/sqlalchemy/orm/dependency.py b/lib/sqlalchemy/orm/dependency.py index 79a0c042a8..6e6f73615b 100644 --- a/lib/sqlalchemy/orm/dependency.py +++ b/lib/sqlalchemy/orm/dependency.py @@ -1,6 +1,5 @@ # orm/dependency.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer -# mike_mp@zzzcomputing.com +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/dynamic.py b/lib/sqlalchemy/orm/dynamic.py index dd2c6e8960..3b2bccd889 100644 --- a/lib/sqlalchemy/orm/dynamic.py +++ b/lib/sqlalchemy/orm/dynamic.py @@ -1,5 +1,5 @@ -# dynamic.py -# Copyright (C) the SQLAlchemy authors and contributors +# orm/dynamic.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/evaluator.py b/lib/sqlalchemy/orm/evaluator.py index e3cbffe98a..f05b92a5ae 100644 --- a/lib/sqlalchemy/orm/evaluator.py +++ b/lib/sqlalchemy/orm/evaluator.py @@ -1,3 +1,9 @@ +# orm/evaluator.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + import operator from sqlalchemy.sql import operators, functions from sqlalchemy.sql import expression as sql diff --git a/lib/sqlalchemy/orm/exc.py b/lib/sqlalchemy/orm/exc.py index 8f257bdd51..a180f3725d 100644 --- a/lib/sqlalchemy/orm/exc.py +++ b/lib/sqlalchemy/orm/exc.py @@ -1,5 +1,5 @@ -# exc.py - ORM exceptions -# Copyright (C) the SQLAlchemy authors and contributors +# orm/exc.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/identity.py b/lib/sqlalchemy/orm/identity.py index 30c3a06b70..a20f59a951 100644 --- a/lib/sqlalchemy/orm/identity.py +++ b/lib/sqlalchemy/orm/identity.py @@ -1,5 +1,5 @@ -# identity.py -# Copyright (C) the SQLAlchemy authors and contributors +# orm/identity.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/interfaces.py b/lib/sqlalchemy/orm/interfaces.py index a6fe153e58..45f53f65e8 100644 --- a/lib/sqlalchemy/orm/interfaces.py +++ b/lib/sqlalchemy/orm/interfaces.py @@ -1,6 +1,5 @@ -# interfaces.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer -# mike_mp@zzzcomputing.com +# orm/interfaces.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/mapper.py b/lib/sqlalchemy/orm/mapper.py index 795730d253..7c8afd7d33 100644 --- a/lib/sqlalchemy/orm/mapper.py +++ b/lib/sqlalchemy/orm/mapper.py @@ -1,5 +1,5 @@ -# mapper.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# orm/mapper.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/properties.py b/lib/sqlalchemy/orm/properties.py index 3d80cc4984..2a305b8360 100644 --- a/lib/sqlalchemy/orm/properties.py +++ b/lib/sqlalchemy/orm/properties.py @@ -1,6 +1,5 @@ -# properties.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer -# mike_mp@zzzcomputing.com +# orm/properties.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/query.py b/lib/sqlalchemy/orm/query.py index 2840ac2611..30ba4504dd 100644 --- a/lib/sqlalchemy/orm/query.py +++ b/lib/sqlalchemy/orm/query.py @@ -1,5 +1,5 @@ # orm/query.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/scoping.py b/lib/sqlalchemy/orm/scoping.py index 140328e248..45b5854cdc 100644 --- a/lib/sqlalchemy/orm/scoping.py +++ b/lib/sqlalchemy/orm/scoping.py @@ -1,5 +1,5 @@ -# scoping.py -# Copyright (C) the SQLAlchemy authors and contributors +# orm/scoping.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/session.py b/lib/sqlalchemy/orm/session.py index b9b935c88e..5a338d50ca 100644 --- a/lib/sqlalchemy/orm/session.py +++ b/lib/sqlalchemy/orm/session.py @@ -1,5 +1,5 @@ -# session.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# orm/session.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/shard.py b/lib/sqlalchemy/orm/shard.py index 9cb26db79d..5d57472ddd 100644 --- a/lib/sqlalchemy/orm/shard.py +++ b/lib/sqlalchemy/orm/shard.py @@ -1,5 +1,5 @@ -# shard.py -# Copyright (C) the SQLAlchemy authors and contributors +# orm/shard.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/state.py b/lib/sqlalchemy/orm/state.py index ad1d4a8f0d..45cb1f22b2 100644 --- a/lib/sqlalchemy/orm/state.py +++ b/lib/sqlalchemy/orm/state.py @@ -1,3 +1,9 @@ +# orm/state.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.util import EMPTY_SET import weakref from sqlalchemy import util diff --git a/lib/sqlalchemy/orm/strategies.py b/lib/sqlalchemy/orm/strategies.py index 04a23f0003..ce249814d4 100644 --- a/lib/sqlalchemy/orm/strategies.py +++ b/lib/sqlalchemy/orm/strategies.py @@ -1,5 +1,5 @@ -# strategies.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# orm/strategies.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/sync.py b/lib/sqlalchemy/orm/sync.py index 05298767de..909e9492c1 100644 --- a/lib/sqlalchemy/orm/sync.py +++ b/lib/sqlalchemy/orm/sync.py @@ -1,5 +1,5 @@ -# mapper/sync.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# orm/sync.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/unitofwork.py b/lib/sqlalchemy/orm/unitofwork.py index 673591e8e3..d55b871f72 100644 --- a/lib/sqlalchemy/orm/unitofwork.py +++ b/lib/sqlalchemy/orm/unitofwork.py @@ -1,5 +1,5 @@ # orm/unitofwork.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/orm/util.py b/lib/sqlalchemy/orm/util.py index db28089efb..c6be522f93 100644 --- a/lib/sqlalchemy/orm/util.py +++ b/lib/sqlalchemy/orm/util.py @@ -1,6 +1,5 @@ -# mapper/util.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer -# mike_mp@zzzcomputing.com +# orm/util.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/pool.py b/lib/sqlalchemy/pool.py index c70a41069f..5eb55ad9d2 100644 --- a/lib/sqlalchemy/pool.py +++ b/lib/sqlalchemy/pool.py @@ -1,6 +1,5 @@ -# pool.py - Connection pooling for SQLAlchemy -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer -# mike_mp@zzzcomputing.com +# sqlalchemy/pool.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/processors.py b/lib/sqlalchemy/processors.py index 88dabe87c3..422991ec0a 100644 --- a/lib/sqlalchemy/processors.py +++ b/lib/sqlalchemy/processors.py @@ -1,4 +1,5 @@ -# processors.py +# sqlalchemy/processors.py +# Copyright (C) 2010-2011 the SQLAlchemy authors and contributors # Copyright (C) 2010 Gaetan de Menten gdementen@gmail.com # # This module is part of SQLAlchemy and is released under diff --git a/lib/sqlalchemy/queue.py b/lib/sqlalchemy/queue.py index 74435ea38a..cc35d548fc 100644 --- a/lib/sqlalchemy/queue.py +++ b/lib/sqlalchemy/queue.py @@ -1,3 +1,9 @@ +# sqlalchemy/queue.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """An adaptation of Py2.3/2.4's Queue module which supports reentrant behavior, using RLock instead of Lock for its mutex object. diff --git a/lib/sqlalchemy/schema.py b/lib/sqlalchemy/schema.py index a332cec361..6c68194fb9 100644 --- a/lib/sqlalchemy/schema.py +++ b/lib/sqlalchemy/schema.py @@ -1,6 +1,5 @@ -# schema.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer -# mike_mp@zzzcomputing.com +# sqlalchemy/schema.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/sql/__init__.py b/lib/sqlalchemy/sql/__init__.py index 2bb5f6ab49..80aa769284 100644 --- a/lib/sqlalchemy/sql/__init__.py +++ b/lib/sqlalchemy/sql/__init__.py @@ -1,3 +1,9 @@ +# sql/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.sql.expression import ( Alias, ClauseElement, diff --git a/lib/sqlalchemy/sql/compiler.py b/lib/sqlalchemy/sql/compiler.py index 4b41c6ed33..4163bb8d2e 100644 --- a/lib/sqlalchemy/sql/compiler.py +++ b/lib/sqlalchemy/sql/compiler.py @@ -1,5 +1,5 @@ -# compiler.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# sql/compiler.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/sql/expression.py b/lib/sqlalchemy/sql/expression.py index 5cbe3904a7..283645e990 100644 --- a/lib/sqlalchemy/sql/expression.py +++ b/lib/sqlalchemy/sql/expression.py @@ -1,5 +1,5 @@ -# expression.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# sql/expression.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/sql/functions.py b/lib/sqlalchemy/sql/functions.py index 212f81adab..a85d49a0a7 100644 --- a/lib/sqlalchemy/sql/functions.py +++ b/lib/sqlalchemy/sql/functions.py @@ -1,3 +1,9 @@ +# sql/functions.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy import types as sqltypes from sqlalchemy.sql.expression import ( ClauseList, Function, _literal_as_binds, text, _type_from_args diff --git a/lib/sqlalchemy/sql/operators.py b/lib/sqlalchemy/sql/operators.py index 68e30e646d..a986adefa6 100644 --- a/lib/sqlalchemy/sql/operators.py +++ b/lib/sqlalchemy/sql/operators.py @@ -1,3 +1,9 @@ +# sql/operators.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/sql/util.py b/lib/sqlalchemy/sql/util.py index 638549e12c..4e36545ac1 100644 --- a/lib/sqlalchemy/sql/util.py +++ b/lib/sqlalchemy/sql/util.py @@ -1,3 +1,9 @@ +# sql/util.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy import exc, schema, topological, util, sql, types as sqltypes from sqlalchemy.sql import expression, operators, visitors from itertools import chain diff --git a/lib/sqlalchemy/sql/visitors.py b/lib/sqlalchemy/sql/visitors.py index 791e3b80c4..91ded1130a 100644 --- a/lib/sqlalchemy/sql/visitors.py +++ b/lib/sqlalchemy/sql/visitors.py @@ -1,3 +1,9 @@ +# sql/visitors.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Visitor/traversal interface and library functions. SQLAlchemy schema and expression constructs rely on a Python-centric diff --git a/lib/sqlalchemy/test/__init__.py b/lib/sqlalchemy/test/__init__.py index 7356945d20..61237bbb59 100644 --- a/lib/sqlalchemy/test/__init__.py +++ b/lib/sqlalchemy/test/__init__.py @@ -1,3 +1,9 @@ +# test/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Testing environment and utilities. This package contains base classes and routines used by diff --git a/lib/sqlalchemy/test/assertsql.py b/lib/sqlalchemy/test/assertsql.py index a044f9d02f..18830000a0 100644 --- a/lib/sqlalchemy/test/assertsql.py +++ b/lib/sqlalchemy/test/assertsql.py @@ -1,3 +1,8 @@ +# test/assertsql.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php from sqlalchemy.interfaces import ConnectionProxy from sqlalchemy.engine.default import DefaultDialect diff --git a/lib/sqlalchemy/test/engines.py b/lib/sqlalchemy/test/engines.py index 870f984ecf..d4318c503e 100644 --- a/lib/sqlalchemy/test/engines.py +++ b/lib/sqlalchemy/test/engines.py @@ -1,3 +1,9 @@ +# test/engines.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + import sys, types, weakref from collections import deque from sqlalchemy_nose import config diff --git a/lib/sqlalchemy/test/entities.py b/lib/sqlalchemy/test/entities.py index 0ec677eead..8a8e3c8ce2 100644 --- a/lib/sqlalchemy/test/entities.py +++ b/lib/sqlalchemy/test/entities.py @@ -1,3 +1,9 @@ +# test/entities.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + import sqlalchemy as sa from sqlalchemy import exc as sa_exc diff --git a/lib/sqlalchemy/test/orm.py b/lib/sqlalchemy/test/orm.py index 7ec13c5559..90cc89faa8 100644 --- a/lib/sqlalchemy/test/orm.py +++ b/lib/sqlalchemy/test/orm.py @@ -1,3 +1,9 @@ +# test/orm.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + import inspect, re import config, testing from sqlalchemy import orm diff --git a/lib/sqlalchemy/test/pickleable.py b/lib/sqlalchemy/test/pickleable.py index 9794e424db..d1c02f1444 100644 --- a/lib/sqlalchemy/test/pickleable.py +++ b/lib/sqlalchemy/test/pickleable.py @@ -1,3 +1,9 @@ +# test/pickleable.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """ some objects used for pickle tests, declared in their own module so that they diff --git a/lib/sqlalchemy/test/profiling.py b/lib/sqlalchemy/test/profiling.py index 835253a3a9..fb6db70ca6 100644 --- a/lib/sqlalchemy/test/profiling.py +++ b/lib/sqlalchemy/test/profiling.py @@ -1,3 +1,9 @@ +# test/profiling.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Profiling support for unit and performance tests. These are special purpose profiling methods which operate diff --git a/lib/sqlalchemy/test/requires.py b/lib/sqlalchemy/test/requires.py index 08fde66c30..ef42178131 100644 --- a/lib/sqlalchemy/test/requires.py +++ b/lib/sqlalchemy/test/requires.py @@ -1,3 +1,9 @@ +# test/requires.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Global database feature support policy. Provides decorators to mark tests requiring specific feature support from the diff --git a/lib/sqlalchemy/test/schema.py b/lib/sqlalchemy/test/schema.py index d33d75e2c4..381c404219 100644 --- a/lib/sqlalchemy/test/schema.py +++ b/lib/sqlalchemy/test/schema.py @@ -1,3 +1,9 @@ +# test/schema.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Enhanced versions of schema.Table and schema.Column which establish desired state for different backends. """ diff --git a/lib/sqlalchemy/test/testing.py b/lib/sqlalchemy/test/testing.py index 12cbe5e029..354908cd36 100644 --- a/lib/sqlalchemy/test/testing.py +++ b/lib/sqlalchemy/test/testing.py @@ -1,3 +1,9 @@ +# test/testing.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """TestCase and TestSuite artifacts and testing decorators.""" import itertools diff --git a/lib/sqlalchemy/test/util.py b/lib/sqlalchemy/test/util.py index f2b6b49ea2..199cb4eca6 100644 --- a/lib/sqlalchemy/test/util.py +++ b/lib/sqlalchemy/test/util.py @@ -1,3 +1,9 @@ +# test/util.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + from sqlalchemy.util import jython, function_named import gc diff --git a/lib/sqlalchemy/topological.py b/lib/sqlalchemy/topological.py index 0f4f324618..ca8cc3c4c4 100644 --- a/lib/sqlalchemy/topological.py +++ b/lib/sqlalchemy/topological.py @@ -1,5 +1,5 @@ -# topological.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# sqlalchemy/topological.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/types.py b/lib/sqlalchemy/types.py index e450d6a4fd..0ac286d0b3 100644 --- a/lib/sqlalchemy/types.py +++ b/lib/sqlalchemy/types.py @@ -1,5 +1,5 @@ -# types.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# sqlalchemy/types.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php diff --git a/lib/sqlalchemy/util.py b/lib/sqlalchemy/util.py index 59704e41bd..084feb88cb 100644 --- a/lib/sqlalchemy/util.py +++ b/lib/sqlalchemy/util.py @@ -1,5 +1,5 @@ -# util.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# sqlalchemy/util.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php -- 2.47.2