]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- add copyright to source files missing it
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 26 Oct 2013 20:32:17 +0000 (16:32 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 26 Oct 2013 20:32:17 +0000 (16:32 -0400)
25 files changed:
lib/sqlalchemy/connectors/mysqldb.py
lib/sqlalchemy/event/__init__.py
lib/sqlalchemy/event/api.py
lib/sqlalchemy/event/attr.py
lib/sqlalchemy/event/base.py
lib/sqlalchemy/event/legacy.py
lib/sqlalchemy/event/registry.py
lib/sqlalchemy/orm/base.py
lib/sqlalchemy/testing/__init__.py
lib/sqlalchemy/testing/assertions.py
lib/sqlalchemy/testing/assertsql.py
lib/sqlalchemy/testing/config.py
lib/sqlalchemy/testing/engines.py
lib/sqlalchemy/testing/entities.py
lib/sqlalchemy/testing/exclusions.py
lib/sqlalchemy/testing/fixtures.py
lib/sqlalchemy/testing/mock.py
lib/sqlalchemy/testing/pickleable.py
lib/sqlalchemy/testing/plugin/noseplugin.py
lib/sqlalchemy/testing/profiling.py
lib/sqlalchemy/testing/requirements.py
lib/sqlalchemy/testing/runner.py
lib/sqlalchemy/testing/schema.py
lib/sqlalchemy/testing/util.py
lib/sqlalchemy/testing/warnings.py

index 5f4b3e4d329d0fd3a73de83155399d23dcae05e6..8e6abe233eb9fe4a5ddea29330d4d13092ab8e06 100644 (file)
@@ -1,3 +1,9 @@
+# connectors/mysqldb.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 """Define behaviors common to MySQLdb dialects.
 
 Currently includes MySQL and Drizzle.
index 0a0131e23c67fc6140094e20ba6d3ad49b364017..41d81c46e9f128311e3d21bb612326ce870306e7 100644 (file)
@@ -1,4 +1,4 @@
-# sqlalchemy/event.py
+# event/__init__.py
 # Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 33a6b817f433b77e548196d26de23d210c0c820a..5d10bb50bba29d61b019288333349df8d6142a38 100644 (file)
@@ -1,3 +1,9 @@
+# event/api.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 """Public API functions for the event system.
 
 """
index 629ea5800e7fde648f79eaff231073e80fec4889..690ebce080f9c681fc1390b095629810a49edf27 100644 (file)
@@ -1,3 +1,9 @@
+# event/attr.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 """Attribute implementation for _Dispatch classes.
 
 The various listener targets for a particular event class are represented
index 1d7bb9cd147120fef29f1e81e8d64b4f6e63b385..788b24bfa87548ae04337729472c26d9964004b1 100644 (file)
@@ -1,3 +1,9 @@
+# event/base.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 """Base implementation classes.
 
 The public-facing ``Events`` serves as the base class for an event interface;
index 7bf0f2ca0b22d1d8d561fea488250f305e0e11a5..9278e62fbcc920342f5d0b41f54e18ded69d4951 100644 (file)
@@ -1,3 +1,9 @@
+# event/legacy.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 """Routines to handle adaption of legacy call signatures,
 generation of deprecation notes and docstrings.
 
index 868dc28edcd3ea5449fc9f2ce73eb9c8630b81a1..a3e35e55a83c867056d380e7747801683c75719f 100644 (file)
@@ -1,3 +1,9 @@
+# event/registry.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 """Provides managed registration services on behalf of :func:`.listen`
 arguments.
 
index 47d8796b894e104ebbdf2cdcfe6d852c69d5f155..7e56b0228fd06e84721cccf9b67cdefac32a1b9c 100644 (file)
@@ -3,6 +3,7 @@
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 """Constants and rudimental functions used throughout the ORM.
 
 """
index 90512e41a82c5fc6e092f0cb0af0bd52830e8868..34439fd2087f58f224598a1c8578bbf862ede198 100644 (file)
@@ -1,3 +1,8 @@
+# testing/__init__.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
 
 
 from .warnings import testing_warn, assert_warnings, resetwarnings
index 0d43d0e0456edf81263dda8b8c9f29463557c123..8a859c0b1d57b88b1e7a9c3ca7a2e41780cb3ce8 100644 (file)
@@ -1,3 +1,9 @@
+# testing/assertions.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 from __future__ import absolute_import
 
 from . import util as testutil
index a6b63b2c319b56f1635c589e666a6667a21fdf97..d7683250de0d950e2af7db74a15996478b21c12e 100644 (file)
@@ -1,3 +1,8 @@
+# testing/assertsql.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
 
 from ..engine.default import DefaultDialect
 from .. import util
index ae4f585e1904e161d465daba26b9dd724db5004a..9bee17d10757c8441b68ec844f256177b86fb043 100644 (file)
@@ -1,2 +1,8 @@
+# testing/config.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 requirements = None
 db = None
index 29c8b6a032cd1db9f4435b932f1790f18370522b..11392c7e2c0cdf588f0c724e8e33cb8b4076cdfb 100644 (file)
@@ -1,3 +1,9 @@
+# testing/engines.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 from __future__ import absolute_import
 
 import types
@@ -75,7 +81,7 @@ class ConnectionKiller(object):
         for conn, rec in self.conns:
             self._safe(conn.close)
             rec.connection = None
-            
+
         self.conns = set()
         for rec in list(self.testing_engines):
             rec.dispose()
index c0dd58650bc836ae328e550bcf2441d3a535e6ac..26203a4033efc1af0029e7dd148e5db3381c6373 100644 (file)
@@ -1,3 +1,9 @@
+# testing/entities.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# 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
 
index f580f3fde7432dd94b48047081c7ceb33ac67a1d..d126c3aa54f41ffcce0d5689a43aa9dbad6d6367 100644 (file)
@@ -1,3 +1,8 @@
+# testing/exclusions.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
 
 
 import operator
index daa779ae3181f876b74f7d2d886f38ad25c2e9f9..a1c9cebeea6a58a865bec9972b54b053dc3f092a 100644 (file)
@@ -1,3 +1,9 @@
+# testing/fixtures.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 from . import config
 from . import assertions, schema
 from .util import adict
index fa2d477a7000bace14012014bf34ba0f66e34e7d..ec88eaafe820c84798501781249ceda5e77915b8 100644 (file)
@@ -1,3 +1,9 @@
+# testing/mock.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 """Import stub for mock library.
 """
 from __future__ import absolute_import
index 09d51b5faf530edd13b3a7914d8d3c1036967296..0224b89d24481255322dd2db577ea46163b85567 100644 (file)
@@ -1,3 +1,9 @@
+# testing/pickleable.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 """Classes used in pickling tests, need to be at the module level for
 unpickling.
 """
index 319aefa96c0438628ed3305aeddc69bec1852dc8..704e90d533e75184c7922edd5cda68bda833a56e 100644 (file)
@@ -1,3 +1,9 @@
+# plugin/noseplugin.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 """Enhance nose with extra options and behaviors for running SQLAlchemy tests.
 
 When running ./sqla_nose.py, this module is imported relative to the
index 4f6ea3f9098ee200a04df92d7a9bdd603743bd68..8d3d81c8e5bcb1a8676f5b9b884cd374e7b61994 100644 (file)
@@ -1,3 +1,9 @@
+# testing/profiling.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# 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
index 7dc6ea40beb8780e22865fa73156ae51e1cf5e04..408c3705efd8ed06cc0fccb43735b231e4f1dedd 100644 (file)
@@ -1,3 +1,9 @@
+# testing/requirements.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# 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
index 2bdbaebd1f11ed7b0e4eb475e0dfb1a36486fbd0..67e7fddc16553bc9a7bc2dfe7e23571408d38ee5 100644 (file)
@@ -1,4 +1,9 @@
 #!/usr/bin/env python
+# testing/runner.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
 """
 Nose test runner module.
 
index 025bbaabeb1becc96cbe46e7e712c2d5ec42855b..93dddc5a7b0efb634cf388ccb6f9c994ebb9d275 100644 (file)
@@ -1,3 +1,8 @@
+# testing/schema.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
 
 from . import exclusions
 from .. import schema, event
index 1288902f2e447315a32dcc5f51de25aad6268c33..da6e70eee3557314d8e099ac5d780d1440cd4714 100644 (file)
@@ -1,3 +1,9 @@
+# testing/util.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 from ..util import jython, pypy, defaultdict, decorator, py2k
 import decimal
 import gc
index 6193acd886e9e574e0d80482a11ef1f43ad165b5..abc33f60bbe7fec02fe9c935e78294c22a8e46a1 100644 (file)
@@ -1,3 +1,9 @@
+# testing/warnings.py
+# Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 from __future__ import absolute_import
 
 import warnings