]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
copyright->2005,2006
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 3 Jan 2006 00:49:54 +0000 (00:49 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 3 Jan 2006 00:49:54 +0000 (00:49 +0000)
19 files changed:
lib/sqlalchemy/__init__.py
lib/sqlalchemy/ansisql.py
lib/sqlalchemy/attributes.py
lib/sqlalchemy/databases/__init__.py
lib/sqlalchemy/databases/mysql.py
lib/sqlalchemy/databases/oracle.py
lib/sqlalchemy/databases/postgres.py
lib/sqlalchemy/databases/sqlite.py
lib/sqlalchemy/engine.py
lib/sqlalchemy/mapping/__init__.py
lib/sqlalchemy/mapping/mapper.py
lib/sqlalchemy/mapping/objectstore.py
lib/sqlalchemy/mapping/properties.py
lib/sqlalchemy/mapping/topological.py
lib/sqlalchemy/pool.py
lib/sqlalchemy/schema.py
lib/sqlalchemy/sql.py
lib/sqlalchemy/types.py
lib/sqlalchemy/util.py

index 593dfe1c25fa5f4ff48a566fd02692e59bfc2add..29b2dfd608ec6fe53aa19300f08dca2d8704d787 100644 (file)
@@ -1,5 +1,5 @@
 # __init__.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index ae7837a686c9c8abd99e49d8f2269118e6a5ca27..92db3b1ba2cbf8b93939f2494ef80716c21e08a9 100644 (file)
@@ -1,5 +1,5 @@
 # ansisql.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 8c1e60a9044c5973731eaf202cd15bdaef35f58f..c04e5e3a1014440a0d25d6e182d84276122e7551 100644 (file)
@@ -1,5 +1,5 @@
 # attributes.py - manages object attributes
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 8d2f22a19c9588099c6c69187eeefbfeb7381248..10cf9f6b225d1fe71b84067f3af25de60cb14acb 100644 (file)
@@ -1,5 +1,5 @@
 # __init__.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 2bda525b53f09a50219b8cda6dc77a8226b96c64..f1d4630c83c50df66c7a49973f4281a9c339b323 100644 (file)
@@ -1,5 +1,5 @@
 # mysql.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 526aca1560150f8993e0aae3e575d6d65b95d974..c3214c669e6d4e2fe1be112ba0f175ef8068f7bb 100644 (file)
@@ -1,5 +1,5 @@
 # oracle.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index a67210402138697bf1b667f0330ef4a5d602cf65..7cfcb8382f5a605770918234ccdc993810d85e72 100644 (file)
@@ -1,5 +1,5 @@
 # postgres.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 87fadff4e99d739a4562d52f2bc5578ee02d3045..3c15d48b5f34110bb2dfb71778dcb4d2912a9d70 100644 (file)
@@ -1,5 +1,5 @@
 # sqlite.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 703bd0b3ed060c69b5a63358a7d61b5540f7eac6..3bcfaacf1d4303e1f222989e3a53ce0ca2fac479 100644 (file)
@@ -1,5 +1,5 @@
 # engine.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index ce1e07750495ae1afd98390a8d8ab8688d48038b..caaf5485fa2dcdcd15276a819adba6ed5d8670e3 100644 (file)
@@ -1,5 +1,5 @@
 # mapper/__init__.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 2437cdc371397f71fe7d50de5c5afd5728553e3b..78bc8ee708ccf533f42cc5229f2762ce6022b0c9 100644 (file)
@@ -1,5 +1,5 @@
 # mapper/mapper.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 0bfa96e6a346cddff30740e0cea5d9023eae30c7..58772ebb4a0c10369abf83a32ced8c8ed2d3a9a9 100644 (file)
@@ -1,5 +1,5 @@
 # objectstore.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index 502fd794dfa82446cce61ccc95bb5f03b9a42f1e..8cdf5aa95e12c2737e74a00801385a435cd3a1a1 100644 (file)
@@ -1,5 +1,5 @@
 # properties.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index f317504da65bc4718a612c6d8a570fa25a086ae1..70aa2105de9535be0359f5866fef6686f0d93941 100644 (file)
@@ -1,5 +1,5 @@
 # topological.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index d406ceb255245616aacc4fad97dc2dcc572c699c..16b4a981fb7f740ef9b62b88e7412705ea685030 100644 (file)
@@ -1,5 +1,5 @@
 # pool.py - Connection pooling for SQLAlchemy
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index fbb0eabde067d915b8ef1f624909f7e7bb2ad2b6..c726bd2f0f4e5b90d15fb57b13bca308675d3464 100644 (file)
@@ -1,5 +1,5 @@
 # schema.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index c1ff9a531a59f3ada485acb607893ac6f6b8cd57..c60f7526834f9812625083ce52af7cce63d912e1 100644 (file)
@@ -1,5 +1,5 @@
 # sql.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index dac101e7bcb21d276356c66dac03f62bc6572d8c..3b2b5cf043da6ddab0693291de8d41b544e3c12e 100644 (file)
@@ -1,5 +1,5 @@
 # types.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php
index edc08b26f6f38580f90ad68b3cf6b039e15cad0f..e743039e6ca7afb54b237c9666c9af5b933d24ed 100644 (file)
@@ -1,5 +1,5 @@
 # util.py
-# Copyright (C) 2005 Michael Bayer mike_mp@zzzcomputing.com
+# Copyright (C) 2005,2006 Michael Bayer mike_mp@zzzcomputing.com
 #
 # This module is part of SQLAlchemy and is released under
 # the MIT License: http://www.opensource.org/licenses/mit-license.php