diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-12 17:56:11 -0400 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2013-08-12 17:56:11 -0400 |
| commit | 4c2863765e34ce27e6383fac8b7d2228ec23285e (patch) | |
| tree | ee504925ef581effd8865974fd00edabd2f61401 /lib/sqlalchemy/sql/elements.py | |
| parent | f6198d9abf453182f4b111e0579a7a4ef1614e79 (diff) | |
| download | sqlalchemy-4c2863765e34ce27e6383fac8b7d2228ec23285e.tar.gz | |
- header comments
Diffstat (limited to 'lib/sqlalchemy/sql/elements.py')
| -rw-r--r-- | lib/sqlalchemy/sql/elements.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/lib/sqlalchemy/sql/elements.py b/lib/sqlalchemy/sql/elements.py index 151157e15..1867df123 100644 --- a/lib/sqlalchemy/sql/elements.py +++ b/lib/sqlalchemy/sql/elements.py @@ -1,3 +1,15 @@ +# sql/elements.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 + +"""Core SQL expression elements, including :class:`.ClauseElement`, +:class:`.ColumnElement`, and derived classes. + +""" + + from __future__ import unicode_literals from .. import util, exc, inspection |
