diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-01-02 13:58:31 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2011-01-02 13:58:31 -0500 |
| commit | 71f92436bdc86f30e2c21d8f5244733601e8c39e (patch) | |
| tree | 05779f6545068ed01094d2106c688932e4eca3d9 /lib/sqlalchemy/util | |
| parent | f111a0ad54503dcddc228ccc3a67a84c8470cd2e (diff) | |
| download | sqlalchemy-71f92436bdc86f30e2c21d8f5244733601e8c39e.tar.gz | |
- clean up copyright, update for 2011, stamp every file with
a consistent tag
- AUTHORS file
Diffstat (limited to 'lib/sqlalchemy/util')
| -rw-r--r-- | lib/sqlalchemy/util/__init__.py | 4 | ||||
| -rw-r--r-- | lib/sqlalchemy/util/_collections.py | 6 | ||||
| -rw-r--r-- | lib/sqlalchemy/util/compat.py | 6 | ||||
| -rw-r--r-- | lib/sqlalchemy/util/deprecations.py | 6 | ||||
| -rw-r--r-- | lib/sqlalchemy/util/langhelpers.py | 6 | ||||
| -rw-r--r-- | lib/sqlalchemy/util/queue.py | 6 | ||||
| -rw-r--r-- | lib/sqlalchemy/util/topological.py | 4 |
7 files changed, 34 insertions, 4 deletions
diff --git a/lib/sqlalchemy/util/__init__.py b/lib/sqlalchemy/util/__init__.py index ae1eb3ac5..9ce223939 100644 --- a/lib/sqlalchemy/util/__init__.py +++ b/lib/sqlalchemy/util/__init__.py @@ -1,5 +1,5 @@ -# util.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# util/__init__.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file> # # 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/_collections.py b/lib/sqlalchemy/util/_collections.py index 2735f5e80..4f9c5dc8a 100644 --- a/lib/sqlalchemy/util/_collections.py +++ b/lib/sqlalchemy/util/_collections.py @@ -1,3 +1,9 @@ +# util/_collections.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file> +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Collection classes and helpers.""" import sys diff --git a/lib/sqlalchemy/util/compat.py b/lib/sqlalchemy/util/compat.py index 79dd6228f..fb2a14633 100644 --- a/lib/sqlalchemy/util/compat.py +++ b/lib/sqlalchemy/util/compat.py @@ -1,3 +1,9 @@ +# util/compat.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file> +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Handle Python version/platform incompatibilities.""" import sys diff --git a/lib/sqlalchemy/util/deprecations.py b/lib/sqlalchemy/util/deprecations.py index d3416c7b4..532594b72 100644 --- a/lib/sqlalchemy/util/deprecations.py +++ b/lib/sqlalchemy/util/deprecations.py @@ -1,3 +1,9 @@ +# util/deprecations.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file> +# +# This module is part of SQLAlchemy and is released under +# the MIT License: http://www.opensource.org/licenses/mit-license.php + """Helpers related to deprecation of functions, methods, classes, other functionality.""" diff --git a/lib/sqlalchemy/util/langhelpers.py b/lib/sqlalchemy/util/langhelpers.py index 2b9e890fc..38260cd66 100644 --- a/lib/sqlalchemy/util/langhelpers.py +++ b/lib/sqlalchemy/util/langhelpers.py @@ -1,3 +1,9 @@ +# util/langhelpers.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <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 help with the creation, loading and introspection of modules, classes, hierarchies, attributes, functions, and methods. diff --git a/lib/sqlalchemy/util/queue.py b/lib/sqlalchemy/util/queue.py index 74435ea38..db7175952 100644 --- a/lib/sqlalchemy/util/queue.py +++ b/lib/sqlalchemy/util/queue.py @@ -1,3 +1,9 @@ +# util/queue.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file> +# +# 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/util/topological.py b/lib/sqlalchemy/util/topological.py index 0f4f32461..aeb212d4d 100644 --- a/lib/sqlalchemy/util/topological.py +++ b/lib/sqlalchemy/util/topological.py @@ -1,5 +1,5 @@ -# topological.py -# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Michael Bayer mike_mp@zzzcomputing.com +# util/topological.py +# Copyright (C) 2005-2011 the SQLAlchemy authors and contributors <see AUTHORS file> # # This module is part of SQLAlchemy and is released under # the MIT License: http://www.opensource.org/licenses/mit-license.php |
