]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- header comments
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 12 Aug 2013 21:56:11 +0000 (17:56 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 12 Aug 2013 21:56:11 +0000 (17:56 -0400)
lib/sqlalchemy/sql/ddl.py
lib/sqlalchemy/sql/dml.py
lib/sqlalchemy/sql/elements.py
lib/sqlalchemy/sql/schema.py
lib/sqlalchemy/sql/sqltypes.py
lib/sqlalchemy/sql/type_api.py

index ee13c07dd91070656ff97fef2f71c966e2f0a4d6..8159ca4721016b5a51841e32427ab7b75671b015 100644 (file)
@@ -1,4 +1,4 @@
-# schema/ddl.py
+# sql/ddl.py
 # Copyright (C) 2009-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cd06bf21a25a463760cb94b7cc84f2671cc93640..cbebf7d55d34d20c2beb07074c324576cd1fd505 100644 (file)
@@ -1,4 +1,4 @@
-# schema/dml.py
+# sql/dml.py
 # Copyright (C) 2009-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 151157e15aee9ba4c1a25e354614cfc5a635dd18..1867df12361fd4874cd9a7f4b12c67075bb8141d 100644 (file)
@@ -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
index dbd7ec03db2a041f5a336fb3bb222b747498343f..183b30077325bc6f74bd29b562de19f8aac7e3f0 100644 (file)
@@ -1,4 +1,4 @@
-# sqlalchemy/schema.py
+# sql/schema.py
 # Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a9ffab6395fdc9a81777af5fc2338410060b8b5d..c7b210be640cdd5b0879bcad55825471b33189a8 100644 (file)
@@ -1,4 +1,4 @@
-# sqlalchemy/types.py
+# sql/sqltypes.py
 # Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index eb39c622cde5fd8c69af67b9069a637ebefad8dc..83b8ec570672e3d05503aaddfc4a284931095f74 100644 (file)
@@ -1,4 +1,4 @@
-# sqlalchemy/types_base.py
+# sql/types_api.py
 # Copyright (C) 2005-2013 the SQLAlchemy authors and contributors <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under