]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
2024 setup
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 1 Jan 2024 22:03:08 +0000 (17:03 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 1 Jan 2024 22:03:08 +0000 (17:03 -0500)
Change-Id: I2853d99bbc19c94227e2b88d450873197013bdfb

261 files changed:
lib/sqlalchemy/__init__.py
lib/sqlalchemy/connectors/__init__.py
lib/sqlalchemy/connectors/aioodbc.py
lib/sqlalchemy/connectors/asyncio.py
lib/sqlalchemy/connectors/pyodbc.py
lib/sqlalchemy/cyextension/__init__.py
lib/sqlalchemy/cyextension/collections.pyx
lib/sqlalchemy/cyextension/immutabledict.pxd
lib/sqlalchemy/cyextension/immutabledict.pyx
lib/sqlalchemy/cyextension/processors.pyx
lib/sqlalchemy/cyextension/resultproxy.pyx
lib/sqlalchemy/cyextension/util.pyx
lib/sqlalchemy/dialects/__init__.py
lib/sqlalchemy/dialects/_typing.py
lib/sqlalchemy/dialects/mssql/__init__.py
lib/sqlalchemy/dialects/mssql/aioodbc.py
lib/sqlalchemy/dialects/mssql/base.py
lib/sqlalchemy/dialects/mssql/information_schema.py
lib/sqlalchemy/dialects/mssql/json.py
lib/sqlalchemy/dialects/mssql/provision.py
lib/sqlalchemy/dialects/mssql/pymssql.py
lib/sqlalchemy/dialects/mssql/pyodbc.py
lib/sqlalchemy/dialects/mysql/__init__.py
lib/sqlalchemy/dialects/mysql/aiomysql.py
lib/sqlalchemy/dialects/mysql/asyncmy.py
lib/sqlalchemy/dialects/mysql/base.py
lib/sqlalchemy/dialects/mysql/cymysql.py
lib/sqlalchemy/dialects/mysql/dml.py
lib/sqlalchemy/dialects/mysql/enumerated.py
lib/sqlalchemy/dialects/mysql/expression.py
lib/sqlalchemy/dialects/mysql/json.py
lib/sqlalchemy/dialects/mysql/mariadb.py
lib/sqlalchemy/dialects/mysql/mariadbconnector.py
lib/sqlalchemy/dialects/mysql/mysqlconnector.py
lib/sqlalchemy/dialects/mysql/mysqldb.py
lib/sqlalchemy/dialects/mysql/provision.py
lib/sqlalchemy/dialects/mysql/pymysql.py
lib/sqlalchemy/dialects/mysql/pyodbc.py
lib/sqlalchemy/dialects/mysql/reflection.py
lib/sqlalchemy/dialects/mysql/reserved_words.py
lib/sqlalchemy/dialects/mysql/types.py
lib/sqlalchemy/dialects/oracle/__init__.py
lib/sqlalchemy/dialects/oracle/base.py
lib/sqlalchemy/dialects/oracle/cx_oracle.py
lib/sqlalchemy/dialects/oracle/dictionary.py
lib/sqlalchemy/dialects/oracle/oracledb.py
lib/sqlalchemy/dialects/oracle/provision.py
lib/sqlalchemy/dialects/oracle/types.py
lib/sqlalchemy/dialects/postgresql/__init__.py
lib/sqlalchemy/dialects/postgresql/_psycopg_common.py
lib/sqlalchemy/dialects/postgresql/array.py
lib/sqlalchemy/dialects/postgresql/asyncpg.py
lib/sqlalchemy/dialects/postgresql/base.py
lib/sqlalchemy/dialects/postgresql/dml.py
lib/sqlalchemy/dialects/postgresql/ext.py
lib/sqlalchemy/dialects/postgresql/hstore.py
lib/sqlalchemy/dialects/postgresql/json.py
lib/sqlalchemy/dialects/postgresql/named_types.py
lib/sqlalchemy/dialects/postgresql/operators.py
lib/sqlalchemy/dialects/postgresql/pg8000.py
lib/sqlalchemy/dialects/postgresql/pg_catalog.py
lib/sqlalchemy/dialects/postgresql/provision.py
lib/sqlalchemy/dialects/postgresql/psycopg.py
lib/sqlalchemy/dialects/postgresql/psycopg2.py
lib/sqlalchemy/dialects/postgresql/psycopg2cffi.py
lib/sqlalchemy/dialects/postgresql/ranges.py
lib/sqlalchemy/dialects/postgresql/types.py
lib/sqlalchemy/dialects/sqlite/__init__.py
lib/sqlalchemy/dialects/sqlite/aiosqlite.py
lib/sqlalchemy/dialects/sqlite/base.py
lib/sqlalchemy/dialects/sqlite/dml.py
lib/sqlalchemy/dialects/sqlite/json.py
lib/sqlalchemy/dialects/sqlite/provision.py
lib/sqlalchemy/dialects/sqlite/pysqlcipher.py
lib/sqlalchemy/dialects/sqlite/pysqlite.py
lib/sqlalchemy/engine/__init__.py
lib/sqlalchemy/engine/_py_processors.py
lib/sqlalchemy/engine/_py_row.py
lib/sqlalchemy/engine/_py_util.py
lib/sqlalchemy/engine/base.py
lib/sqlalchemy/engine/characteristics.py
lib/sqlalchemy/engine/create.py
lib/sqlalchemy/engine/cursor.py
lib/sqlalchemy/engine/default.py
lib/sqlalchemy/engine/events.py
lib/sqlalchemy/engine/interfaces.py
lib/sqlalchemy/engine/mock.py
lib/sqlalchemy/engine/processors.py
lib/sqlalchemy/engine/reflection.py
lib/sqlalchemy/engine/result.py
lib/sqlalchemy/engine/row.py
lib/sqlalchemy/engine/strategies.py
lib/sqlalchemy/engine/url.py
lib/sqlalchemy/engine/util.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/events.py
lib/sqlalchemy/exc.py
lib/sqlalchemy/ext/__init__.py
lib/sqlalchemy/ext/associationproxy.py
lib/sqlalchemy/ext/asyncio/__init__.py
lib/sqlalchemy/ext/asyncio/base.py
lib/sqlalchemy/ext/asyncio/engine.py
lib/sqlalchemy/ext/asyncio/exc.py
lib/sqlalchemy/ext/asyncio/result.py
lib/sqlalchemy/ext/asyncio/scoping.py
lib/sqlalchemy/ext/asyncio/session.py
lib/sqlalchemy/ext/automap.py
lib/sqlalchemy/ext/baked.py
lib/sqlalchemy/ext/compiler.py
lib/sqlalchemy/ext/declarative/__init__.py
lib/sqlalchemy/ext/declarative/extensions.py
lib/sqlalchemy/ext/horizontal_shard.py
lib/sqlalchemy/ext/hybrid.py
lib/sqlalchemy/ext/indexable.py
lib/sqlalchemy/ext/instrumentation.py
lib/sqlalchemy/ext/mutable.py
lib/sqlalchemy/ext/mypy/__init__.py
lib/sqlalchemy/ext/mypy/apply.py
lib/sqlalchemy/ext/mypy/decl_class.py
lib/sqlalchemy/ext/mypy/infer.py
lib/sqlalchemy/ext/mypy/names.py
lib/sqlalchemy/ext/mypy/plugin.py
lib/sqlalchemy/ext/mypy/util.py
lib/sqlalchemy/ext/orderinglist.py
lib/sqlalchemy/ext/serializer.py
lib/sqlalchemy/future/__init__.py
lib/sqlalchemy/future/engine.py
lib/sqlalchemy/inspection.py
lib/sqlalchemy/log.py
lib/sqlalchemy/orm/__init__.py
lib/sqlalchemy/orm/_orm_constructors.py
lib/sqlalchemy/orm/_typing.py
lib/sqlalchemy/orm/attributes.py
lib/sqlalchemy/orm/base.py
lib/sqlalchemy/orm/bulk_persistence.py
lib/sqlalchemy/orm/clsregistry.py
lib/sqlalchemy/orm/collections.py
lib/sqlalchemy/orm/context.py
lib/sqlalchemy/orm/decl_api.py
lib/sqlalchemy/orm/decl_base.py
lib/sqlalchemy/orm/dependency.py
lib/sqlalchemy/orm/descriptor_props.py
lib/sqlalchemy/orm/dynamic.py
lib/sqlalchemy/orm/evaluator.py
lib/sqlalchemy/orm/events.py
lib/sqlalchemy/orm/exc.py
lib/sqlalchemy/orm/identity.py
lib/sqlalchemy/orm/instrumentation.py
lib/sqlalchemy/orm/interfaces.py
lib/sqlalchemy/orm/loading.py
lib/sqlalchemy/orm/mapped_collection.py
lib/sqlalchemy/orm/mapper.py
lib/sqlalchemy/orm/path_registry.py
lib/sqlalchemy/orm/persistence.py
lib/sqlalchemy/orm/properties.py
lib/sqlalchemy/orm/query.py
lib/sqlalchemy/orm/relationships.py
lib/sqlalchemy/orm/scoping.py
lib/sqlalchemy/orm/session.py
lib/sqlalchemy/orm/state.py
lib/sqlalchemy/orm/state_changes.py
lib/sqlalchemy/orm/strategies.py
lib/sqlalchemy/orm/strategy_options.py
lib/sqlalchemy/orm/sync.py
lib/sqlalchemy/orm/unitofwork.py
lib/sqlalchemy/orm/util.py
lib/sqlalchemy/orm/writeonly.py
lib/sqlalchemy/pool/__init__.py
lib/sqlalchemy/pool/base.py
lib/sqlalchemy/pool/events.py
lib/sqlalchemy/pool/impl.py
lib/sqlalchemy/schema.py
lib/sqlalchemy/sql/__init__.py
lib/sqlalchemy/sql/_dml_constructors.py
lib/sqlalchemy/sql/_elements_constructors.py
lib/sqlalchemy/sql/_orm_types.py
lib/sqlalchemy/sql/_py_util.py
lib/sqlalchemy/sql/_selectable_constructors.py
lib/sqlalchemy/sql/_typing.py
lib/sqlalchemy/sql/annotation.py
lib/sqlalchemy/sql/base.py
lib/sqlalchemy/sql/cache_key.py
lib/sqlalchemy/sql/coercions.py
lib/sqlalchemy/sql/compiler.py
lib/sqlalchemy/sql/crud.py
lib/sqlalchemy/sql/ddl.py
lib/sqlalchemy/sql/default_comparator.py
lib/sqlalchemy/sql/dml.py
lib/sqlalchemy/sql/elements.py
lib/sqlalchemy/sql/events.py
lib/sqlalchemy/sql/expression.py
lib/sqlalchemy/sql/functions.py
lib/sqlalchemy/sql/lambdas.py
lib/sqlalchemy/sql/naming.py
lib/sqlalchemy/sql/operators.py
lib/sqlalchemy/sql/roles.py
lib/sqlalchemy/sql/schema.py
lib/sqlalchemy/sql/selectable.py
lib/sqlalchemy/sql/sqltypes.py
lib/sqlalchemy/sql/traversals.py
lib/sqlalchemy/sql/type_api.py
lib/sqlalchemy/sql/util.py
lib/sqlalchemy/sql/visitors.py
lib/sqlalchemy/testing/__init__.py
lib/sqlalchemy/testing/assertions.py
lib/sqlalchemy/testing/assertsql.py
lib/sqlalchemy/testing/asyncio.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/__init__.py
lib/sqlalchemy/testing/fixtures/base.py
lib/sqlalchemy/testing/fixtures/mypy.py
lib/sqlalchemy/testing/fixtures/orm.py
lib/sqlalchemy/testing/fixtures/sql.py
lib/sqlalchemy/testing/pickleable.py
lib/sqlalchemy/testing/plugin/__init__.py
lib/sqlalchemy/testing/plugin/bootstrap.py
lib/sqlalchemy/testing/plugin/plugin_base.py
lib/sqlalchemy/testing/plugin/pytestplugin.py
lib/sqlalchemy/testing/profiling.py
lib/sqlalchemy/testing/provision.py
lib/sqlalchemy/testing/requirements.py
lib/sqlalchemy/testing/schema.py
lib/sqlalchemy/testing/suite/__init__.py
lib/sqlalchemy/testing/suite/test_cte.py
lib/sqlalchemy/testing/suite/test_ddl.py
lib/sqlalchemy/testing/suite/test_deprecations.py
lib/sqlalchemy/testing/suite/test_dialect.py
lib/sqlalchemy/testing/suite/test_insert.py
lib/sqlalchemy/testing/suite/test_reflection.py
lib/sqlalchemy/testing/suite/test_results.py
lib/sqlalchemy/testing/suite/test_rowcount.py
lib/sqlalchemy/testing/suite/test_select.py
lib/sqlalchemy/testing/suite/test_sequence.py
lib/sqlalchemy/testing/suite/test_types.py
lib/sqlalchemy/testing/suite/test_unicode_ddl.py
lib/sqlalchemy/testing/suite/test_update_delete.py
lib/sqlalchemy/testing/util.py
lib/sqlalchemy/testing/warnings.py
lib/sqlalchemy/types.py
lib/sqlalchemy/util/__init__.py
lib/sqlalchemy/util/_collections.py
lib/sqlalchemy/util/_has_cy.py
lib/sqlalchemy/util/_py_collections.py
lib/sqlalchemy/util/compat.py
lib/sqlalchemy/util/concurrency.py
lib/sqlalchemy/util/deprecations.py
lib/sqlalchemy/util/langhelpers.py
lib/sqlalchemy/util/preloaded.py
lib/sqlalchemy/util/queue.py
lib/sqlalchemy/util/tool_support.py
lib/sqlalchemy/util/topological.py
lib/sqlalchemy/util/typing.py
tools/normalize_file_headers.py

index af030614a528f0339a2a11fc03c4d2b7322eb61e..2672fed5141a2e6bedc8887806a1ff27f6105c4c 100644 (file)
@@ -1,5 +1,5 @@
 # __init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1969d7236bc4e11972e7dfff9175887fbe518942..f1cae0b3ceb068ee25351a0ad31f74b6622c2dcd 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 927330b286e405337eee14b6e0c3e016f5492581..14b660a69c2782e6fee6e139fb6eeb9add32ef1d 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/aioodbc.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f17831068cf5071737d399e0040c58fb23c79d85..5f6d8b72a9b091f9eaf70a469da3a3a0c54c0aec 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/asyncio.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 49712a57c4150155f755235f3bcfbf317e78d4b3..7e1cd3afe8fd28c4548f757372c51fee28923dd4 100644 (file)
@@ -1,5 +1,5 @@
 # connectors/pyodbc.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 67aa690e02f8b53bedb34c878b3f283823a1127d..88a4d9039670514bcfe202fb29bba0af8a1cd512 100644 (file)
@@ -1,5 +1,5 @@
 # cyextension/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a45b5d904334e58b75c490d6c8f2da45f23bc599..86d24852b3ffed16ef025ae65965dc0b7e0467ed 100644 (file)
@@ -1,5 +1,5 @@
 # cyextension/collections.pyx
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d733d48affdbe56aa873b1b91aa97cfad3ae8285..76f22893168891ecf32cb39be90c3b4765a79bd0 100644 (file)
@@ -1,5 +1,5 @@
 # cyextension/immutabledict.pxd
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d43d465febee7707183f3d46fccaa32c1ba93e88..b37eccc4c39c3cc5f114e13bb58d1b9b8c06697a 100644 (file)
@@ -1,5 +1,5 @@
 # cyextension/immutabledict.pyx
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 03d8411c3366c93410be29d409e135298fe57b64..3d714569fa0bbee1ce4c0f6e57c6d2cbcba5696b 100644 (file)
@@ -1,5 +1,5 @@
 # cyextension/processors.pyx
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e81df51f38d366a9c0fb8dd080c0684450f77e46..b6e357a1f355f72d35a356feef7e982743625508 100644 (file)
@@ -1,5 +1,5 @@
 # cyextension/resultproxy.pyx
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 63daddf4640ed0f8cf48fdb7bffd20d991d1564e..cb17acd69c08eb0c4d18bcb22a2979443fb2c170 100644 (file)
@@ -1,5 +1,5 @@
 # cyextension/util.pyx
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 055d087cf2458e7a88d95c58989f5586ef2a0171..7d5cc1c9c2f06f82ebc70b54887b0dab31127b1b 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9d2500e48e804884c2db435fd5bb2da1fc0e8c0f..9ee6e4bca1cc04c73c330b570139676032231228 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/_typing.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c601cba1f30e141fa02b3863aee94e0ba64dd9c7..19ab7c422c95cc9c92ae66e115416a649ffbe03a 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e9d22155a746b1afaefe5ace088340c7a245847e..65945d97559d490556d864cc13bb5e44d2b5ef16 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/aioodbc.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 952a7a1f6904d27647905fe1a18f1cbf79ff2f7f..e015dccdc9993b2537da9ff69411e80da8a8150b 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2c30c55b6e079213dac807c33bea1539a4276f0f..11771638832a7f0a75fa963ac30c9294d19495aa 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/information_schema.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f79d6e3ed5e7b1de7da22215562c235a1fd77752..18bea09d0f14c46895a970d5a4efb06f6fa9277d 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/json.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1913c95717a76aba51ff4c0bcb4aaed37604af80..143d386c45e14ec867aab5c942791fe80da36e51 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/provision.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5351be1131ea60202dc954cbd470a9ba8a01c030..ea1f9bd3a7edece9c69915bf68bd0a869e6237f4 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/pymssql.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 17c4e4c830de7a660a85c8a914ece438a1e45d85..f27dee1bd59b110db33e1443e441dbb714309304 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mssql/pyodbc.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 49d859b418db904dc1089a7f2b82f25efe2a48ce..60bac87443d47bee0a5e419e5967a66d96b70f4f 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f92b1bfaa6c03ec12dceeb93ece129cd815e7eba..840a2bf5b49c9da2987d353ff1cd3207432f57f1 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/aiomysql.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors <see AUTHORS
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors <see AUTHORS
 # file>
 #
 # This module is part of SQLAlchemy and is released under
index 7f2a9979e6b43f4116d05e2995de85cbbf8e9a74..802546fb73c51fca19208b0155350c9de9470577 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/asyncmy.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors <see AUTHORS
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors <see AUTHORS
 # file>
 #
 # This module is part of SQLAlchemy and is released under
index 749d42ea1208fc6c4664de7d33c79749b176eb7f..6b8b2e4b18d78fd69bc6eeb5d15a78cc79a8769d 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a96a71eb4c3608b35f37a2657df90b634bb04c53..f199aa4e895a172c125b35445a809da386b7026b 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/cymysql.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index aba60103f7fe44e8c4246051811d51b4ccaee5b8..e4005c267e48122084cd7cc33fc6a9a2d5a2245a 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/dml.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a70d499e4368b5632f03a2e59d846a7dfa65e543..96499d7bee2658da37f52950b620e5ea5e9f42cc 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/enumerated.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0c41aeb727b322d3aa6a26226461a974f2e10a6b..b81b58afc282a70e74d4421f081c2d694f533b68 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/expression.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8359e4d36ad29f136af9e3735eeb6e42c8446693..ebe4a34d2123eb4b4dd0c0c8e2c5e3cc0a880e01 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/json.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 17f858184fcbc2027085b61114d1dcc67c1e8668..10a05f9cb36cfdfda1d1a1e62cefd4a4b940666d 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/mariadb.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3ee9c1e0053721c46e6a3db68b14dcf3841ba40a..2fe3a192aa9e8e6bc547c7dc7500daf1b7b6bb1b 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/mariadbconnector.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 732545301642f302612b63b28ea2eee7972c840b..b1523392d8cc8af9b96f4099609bd3ef9dc32a34 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/mysqlconnector.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d42cdc9b0fd8bdd41eedc3819959fb7bb9950f28..d46d159d4cd7f0da70fac1c04b43a2600409ae63 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/mysqldb.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b3584ee5c7e43b43412ddb5bac6918b9b3a34b29..3f05bcee74d98ef49d0168b3a0603486d2e67f0f 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/provision.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6e87173be97109492709e7234437e52fa7e99602..830e4416c7968ed977c6f4bc1e6a30078ab252bd 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/pymysql.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 87be2827b50912f3d2364ea6ff307c9a65614cbf..428c8dfd38526c961e8d5ee43f2b4fc339c1e74a 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/pyodbc.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d678bc9f4a6dcc87247b7886efd844e3d45e6878..74c60f07b58c274e20a5e96ae784f6bcc5927715 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/reflection.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b092428cf32239bc3289da8cb58397275eadf2b6..009988a60857e1ca4c33888e233667371820c9e8 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/reserved_words.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3fc96e61076e4a8c3a01b9ed81fcc3950eecc47c..f563ead357f7aaca3e91cb6684a179beeb5b782e 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/mysql/types.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 49464d6de7144953ec60a8868c4d5b78325bc4df..e2c8d327a06cc472e0e1edbca2e05a0fb4394255 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 979437094e61339a039ec291ad3cbf0e982f479c..68c992891952e5fb04eca0b7ddc08fd9633f925d 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 95b7abe3b87d7452db95548f0f216e7369c7b66c..440ccad2bc17d94fdb2092927f719ca31cc8a74b 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/cx_oracle.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5d4056ad2af18254c0c17221536627cb38e2d38d..63479b9fcc61546d6cfa2f32fc2adc836497163b 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/dictionary.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c4e2b1ffffd5da2e4713e2a6cd48419029337780..4c6e62446c06415ef7a74f78cbbb5305836425bc 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/oracledb.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c9100192e17bd27afcfeec3f7c893bcfe0be2c8d..b33c1525cd58e58deb3e6b04bedf31b7e0689273 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/provision.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bc9e563ff7530a008cf20704859d8ee4306bf6cd..36caaa05e607750dea05b0a5ba3b636eed90f011 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/oracle/types.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5e327a6eefe76005aaa6745aec1e8cebd1f7d7e3..f85c1e990da26c603b3137e6bb4d53099566a4bb 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 95f549dc68f5b815ff9c2e2cbc73d5f30fc23900..46858c9f22cee665bf29ee8288b3df0f0a531738 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/_psycopg_common.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5c677059b753dd62ab672382afa0fda72f6b12e6..9e81e8368c0e3e0b1ac9735910d5a12bffe84744 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/array.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d138c1819a1c013b3087b0536252b7ec41cc1f76..a4d47b0225db02529914a771fcc7756b81bfc545 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/asyncpg.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors <see AUTHORS
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors <see AUTHORS
 # file>
 #
 # This module is part of SQLAlchemy and is released under
index a932d67923baea1048c2e66ba06790a84a618a08..a7cd0ca8293014f8324e991eee5ea33c47d59c9b 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 26300c27de3ebe14cd41a8b7a4d21c93c1200109..f227d0fac5262a0db33db260bfadb60c53443a05 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/dml.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 22815d9fd64f205eb04f441c438c1afda45674e8..7fc08953fcc134e66a9016f289f2f340c4b32965 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/ext.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0ef548e7948a124b421ffdff522c9d7c2abaef0e..04c8cf16015cc733e17252952ae2a41210b54122 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/hstore.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a0f1814a7a8327cfb52fbd8b948e2898e6e29ccb..dff12e7f4988b2066ddb7e7b5bd8ee7f5bf8474d 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/json.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 26d690ccd305547402c95c3c85c95b9a4c22041b..a0a34a96488fe50e16ecfd77dddef6be4489ad33 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/named_types.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a712022bcb7a48142d14395d03eea62ce71d7c26..53e175f9c54533e1db3dd402785519675e99f213 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/operators.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d0de5cd8947c936e95bf11c7dc570792aa35cd9e..fd7d9a37880e2e55c3332695d91952ba97069aa4 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/pg8000.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors <see AUTHORS
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors <see AUTHORS
 # file>
 #
 # This module is part of SQLAlchemy and is released under
index 25bd6bb99d9864a5f5aff3a2233a24f30a8cf756..7b44bc93f7bd02f7e79ffea21e87a72ddf3f43ae 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/pg_catalog.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9fafaed9baa6c6a15b279ae64ea72d58d07d8a7a..a87bb932066500ac08b51cdaf94004b9799d21ff 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/provision.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 690cadb6b3aed93374491484e262e7de5de329fb..4ea9cbf3f8be96ff73ceb7d3dcda584c2d7e2e2a 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/psycopg.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ef960c297d0d6182606efaa153031ba6c974a9cf..0b89149ec9d6e48711130bc26cb3d308b44a4653 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/psycopg2.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index df8675bf8641751c90adbb5f9a6f9b5455472cfe..3cc3b69fb3408675bbb846007941eb49d727829f 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/psycopg2cffi.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ede52634fe8b78c05f49fc96ca872cbc32d1e2a5..6faf5e11cd04729d823e0ec4c99d494e8c5c3734 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/ranges.py
-# Copyright (C) 2013-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2013-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 75abab8384ab45f10b0665d9f9451984cd62041f..879389989c073b109a269ed17ff7b2396256ce71 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/postgresql/types.py
-# Copyright (C) 2013-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2013-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 18edf67f109183f1e07bbb39e545b51f6d975e49..45f088e2147508c7dbcb2092c0bc5355228e983d 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 05e64ee85d910190a2a4bfd0ba4d959a6a471b18..14e677892d2b693cf43037a3ce24a8c21d67ec1d 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/aiosqlite.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1052c3d4d3d11ced023f6a955fd3166148ab96e4..59ba49c25ecae28d7c9b813c4574c78de0d7a208 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 007502e9153efe5b0ea3b6714bd1e25dd5bae290..42e5b0fc7a59a4285caaecfe8dd6694689007698 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/dml.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6a8f374f944326a9edcc4a0b0e48ba91e7462c0b..ec2980297e206cae2e6c53864ed978e6fa1be496 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/json.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 397ef10088fe1570cedf3ee03b2b684a98d1f59c..f18568b0b33dff3aef3de55df018ed81334b57e6 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/provision.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index df8d7c5d83ed8cec10e5de37521ab17c8a6471c4..388a4dff817da0fcec6fe812a2e8202154c6ee77 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/pysqlcipher.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0d80446eba60e3bb45341884e2a8fd86d0db16e9..006d7f0422464bfce0a00e25a6ef05eb5fe75683 100644 (file)
@@ -1,5 +1,5 @@
 # dialects/sqlite/pysqlite.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 843f970257ab473ae41abc9321a8df1336ac3f25..af0f7ee8becd86831e44f7bcae0792501c9bc03f 100644 (file)
@@ -1,5 +1,5 @@
 # engine/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bedfaeedfba7673911203e59991cb99d2ef30dab..2cc35b501eb0d91a60c2cce42b1e748869b62c70 100644 (file)
@@ -1,5 +1,5 @@
 # engine/_py_processors.py
-# Copyright (C) 2010-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Copyright (C) 2010 Gaetan de Menten gdementen@gmail.com
 #
index 50705a76550f2ed061824ee5a6debb9cfd510638..4e1dd7d430d7d96ce47c03e465bffde64449d20c 100644 (file)
@@ -1,5 +1,5 @@
 # engine/_py_row.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2ef9d03ffd84a2972ca14c5975a290c582b818a9..2be4322abbc5ef203e2237dbd00c945b25227563 100644 (file)
@@ -1,5 +1,5 @@
 # engine/_py_util.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bcf6ca2280f6c4e0f1cf5a22d1a67c4c803fe321..6d8cc667045c10c463027cbd71ab09daf9b865c7 100644 (file)
@@ -1,5 +1,5 @@
 # engine/base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index aed2fd6b3857fea2bdadfb23eb5bdd365129be41..7dd3a2f31e3f1320be5fd049f68aa9bb9463968f 100644 (file)
@@ -1,5 +1,5 @@
 # engine/characteristics.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 684550e558c8f0bd3a7731cd2309583dde6903b0..c30db98c0980d38f2f9bbf8db78a14affbebe1cd 100644 (file)
@@ -1,5 +1,5 @@
 # engine/create.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ff6e311a743ac4d7e0203409a2a54f609c1fcb31..a46a9af16ffc336bb7bfa7ef57eeeefcbb57653f 100644 (file)
@@ -1,5 +1,5 @@
 # engine/cursor.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6ad1de735ad2ae0fc1acb81db174c509feb0580b..213a047711eb84b601ff5d2da05d4a86de598f91 100644 (file)
@@ -1,5 +1,5 @@
 # engine/default.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4f6353080b736b472e6ef863d7582ed35f36e148..b8e8936b94c4eeca251881e77fc0000e5b2d5b39 100644 (file)
@@ -1,5 +1,5 @@
 # engine/events.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ddd4ceeabbd5ac7072220684423e7812ce9a4b8a..5953b86ca3e6c53bb7d826f15a7f410df0b83cb0 100644 (file)
@@ -1,5 +1,5 @@
 # engine/interfaces.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 618ea1d85efaa8e59ba3fb3bffb81c27ebc8abee..c9fa5eb31a78e95a53e40632644f41953c6a8eda 100644 (file)
@@ -1,5 +1,5 @@
 # engine/mock.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bdca5351c52cd91c7bf7d88bb291b6310693a128..610e03d5a1c234e268307693b4f1b3d336b77003 100644 (file)
@@ -1,5 +1,5 @@
 # engine/processors.py
-# Copyright (C) 2010-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2010-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Copyright (C) 2010 Gaetan de Menten gdementen@gmail.com
 #
index 6eed23cbfc600694e480a8437d566aa0439a8b3e..02a757379a888c8a8eb8e4382e6bb85f7c7a4fa7 100644 (file)
@@ -1,5 +1,5 @@
 # engine/reflection.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2e7f1db34c6fb7b0f1475d04f19e79567920f349..c9d51e06677f812d220d7d5e409754ea43237867 100644 (file)
@@ -1,5 +1,5 @@
 # engine/result.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d2bb2e4c9a6a716a1420bf39fda7c3b35c6ade63..f62093522888d1e83a8737ae74cf909f27eff579 100644 (file)
@@ -1,5 +1,5 @@
 # engine/row.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f884f203c9ef31e1841d30039dd2c9292ae1e45d..30c331e8d448fb4f3796b7683ab833fe20ebc798 100644 (file)
@@ -1,5 +1,5 @@
 # engine/strategies.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 04ae5e91fbb13ee4a7818bc3291cf23a25fc38de..31e94f441a235836903fe0b1ba579e10068767c3 100644 (file)
@@ -1,5 +1,5 @@
 # engine/url.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 49f9f9b4eee39f6529a4016bdcfa636ddaba5a8a..e047b94b79223d53b7d9f7ae978c37871355f3ab 100644 (file)
@@ -1,5 +1,5 @@
 # engine/util.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 20a20d18e615f8a3c7a72634ebe20bcce502ef83..9b54f07fc42f193bb8a20c5a7fcd482585092853 100644 (file)
@@ -1,5 +1,5 @@
 # event/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bb1dbea0fc93010baf7698c2a5d521a957c1746f..4a39d10f4063a6caf76ffb5f7dc1f76224ce6a34 100644 (file)
@@ -1,5 +1,5 @@
 # event/api.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2a5fccba20209f37fe66456dc04e8cebc5cb8912..de882b8ec028345d3c27a515f17d950a1561c39f 100644 (file)
@@ -1,5 +1,5 @@
 # event/attr.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f92b2ede3cdc0a16b5eb20352d83d8534360bdac..18a34624783a8bd3e2a4fe9724007fd6f3f64e71 100644 (file)
@@ -1,5 +1,5 @@
 # event/base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f3a7d04acee6f017ea44822357b3caae666f9dee..067b720584071c40010b5b540aa77ea9d04a9558 100644 (file)
@@ -1,5 +1,5 @@
 # event/legacy.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fb2fed815f1f7f3ddc014eaa7a89c78c70913884..c048735e21a10f470b05db289b41066cf7153282 100644 (file)
@@ -1,5 +1,5 @@
 # event/registry.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0124d14dd5fbe3cf520d887f8786cd591454898b..8c3bf01cf6a92a3a23d92c869d4dc332ce713957 100644 (file)
@@ -1,5 +1,5 @@
 # events.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0e90c60e565da80a7ec90c4b880fdffa2bfaaeb2..c4025a2b8cbba67db825b8af8ef6b369994033a8 100644 (file)
@@ -1,5 +1,5 @@
 # exc.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e3af738b7ce13876196d13d3cd2323fb73dd05f4..f03ed945f358d4f78ad2fe1cb527d74a4dec40d8 100644 (file)
@@ -1,5 +1,5 @@
 # ext/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b0b0a5edf1dc518420623ce0c0cf5d1940e6474d..b6c4d41ff77fa83e2652bd1c4a3f95fd46031499 100644 (file)
@@ -1,5 +1,5 @@
 # ext/associationproxy.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ce146dbdab93fd495311aabceee54cbade32c95b..0adc64d81eaa483758af7bf85b7a7d1a41fc6732 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/__init__.py
-# Copyright (C) 2020-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2020-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 69d9cce55c85539955552efe28ad50afd07715ed..330651b074fa43a06560c7e373a01f5cb69eac40 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/base.py
-# Copyright (C) 2020-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2020-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bf968cc38848dafe7a5642facdf1bcc27eac774e..5c4ec8cd050594972f62a954f36ee6cf074c1bcd 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/engine.py
-# Copyright (C) 2020-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2020-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3f937679b935fc41075f8a2bd04cd669c2a12d86..1cf6f3638605127360ad34176647e5ceb177e914 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/exc.py
-# Copyright (C) 2020-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2020-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a13e106ff31a7738ed907a69833e98723c95f82f..2f664bcd6236b683bf3218c34e0b1df25f2fc1ee 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/result.py
-# Copyright (C) 2020-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2020-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4c68f53ffa8959086b5d6e8c8c1b94e2bc9209fa..a5127b8661304de01cf6c6b23494f0145c9a1cbd 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/scoping.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 30232e59cbbd1276fd572e3dd6ceb87df51e72ee..cdca94a9abb2dcdea860b99032119ba443d0c4f8 100644 (file)
@@ -1,5 +1,5 @@
 # ext/asyncio/session.py
-# Copyright (C) 2020-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2020-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0ffc4dc50797e34d6356eab17f61b96c16a025ee..37be38ec68c6a6b6024c535a311915dd18a21157 100644 (file)
@@ -1,5 +1,5 @@
 # ext/automap.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 82db494e411588df5f185cb795cdf8aabfe81f01..60f7ae664471aedb3cb95b3156393ee29d53080c 100644 (file)
@@ -1,5 +1,5 @@
 # ext/baked.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 39a554103050f4210ef6520de0298ac7086c1ad7..01462ad0b48a6f6b4dbb6dc9948675a5ff1fb268 100644 (file)
@@ -1,5 +1,5 @@
 # ext/compiler.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2f6b2f23fa84e7d3b66984dfafee67a35343faa3..37da40377b6b9c706bab56b5f6aef5784f0a7c90 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index acc9d08cfbf2d285fbaf1c3d7e735041214b1803..c0f7e3405803726aa54f17700206f5ac34c1a867 100644 (file)
@@ -1,5 +1,5 @@
 # ext/declarative/extensions.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c50b1c522719a97711408231b8705f31aea2d00e..24060a062e1334e513efd3b935adfff64e8003d8 100644 (file)
@@ -1,5 +1,5 @@
 # ext/horizontal_shard.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9208d107af6765b7b56976391a54fd1ba486a72d..ddb5d4d9f2191ce11c3042ea45a3a060f07b8995 100644 (file)
@@ -1,5 +1,5 @@
 # ext/hybrid.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b3d90a6e92687b049a2970280dc13b85e29bc9a1..3c419308a696b497da5d929b424b8c9638387228 100644 (file)
@@ -1,5 +1,5 @@
 # ext/indexable.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 688c762e72b5e36870799a880d2f8e4516c22fec..e84dde268775de5633af1a9722d299d714205981 100644 (file)
@@ -1,5 +1,5 @@
 # ext/instrumentation.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bd5820ebdef070f03c752c9bd9029c7b91802d48..6f9a7b4503b65c31f9b81f4c86330e41d8db04cd 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mutable.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8a2e38098e3b429c126017313691d241c44151bc..de2c02ee9f13152e59419d6be089c2cf13d0c16b 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e18cd08a3fed0c328c8c8d7ff7144dbf0f7163d5..4185d29b948c54e84550443226172332587e3fda 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/apply.py
-# Copyright (C) 2021-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2021-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9e2dcbb9aba70d1442d805768cfdf90c0e52df45..d7dff91cbd853576365817660ba7e8c2dd8385a2 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/decl_class.py
-# Copyright (C) 2021-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2021-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f7626bdf6b105bad256c94f3ea13d51124299302..09b3c443ab06e6ec7fe27769fe3a7dcdbfaa9dd7 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/infer.py
-# Copyright (C) 2021-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2021-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 256e0be636a76afa506e54880aa5735709881f5d..35b4e2ba819cadc863b6114da212bea3c1b70dd2 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/names.py
-# Copyright (C) 2021-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2021-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 862d7d2166fb12d7fc98f2b932340fe133625d60..00eb4d1cc03ad305f7b507b59758c8d1f1fb5e70 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/plugin.py
-# Copyright (C) 2021-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2021-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 238c82a54f2e48768b45faa8c7bcca215709527e..10cdb56b050070349bf35c5230bc608870b11f5f 100644 (file)
@@ -1,5 +1,5 @@
 # ext/mypy/util.py
-# Copyright (C) 2021-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2021-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a6c42ff0936be939983436d0a65c3fbaec7a304f..1a12cf38c6981da4c92b667ff7064de75041cef1 100644 (file)
@@ -1,5 +1,5 @@
 # ext/orderinglist.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 706bff29fb0cc2b91d27d1a54a6feb837246f941..f21e997a227ad633007d5b6a680269d33f394f2f 100644 (file)
@@ -1,5 +1,5 @@
 # ext/serializer.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c76360fcfff45790fca03f9129b07838c60ac9c9..8ce36ccbc24505a6e4dae921b732f961f2da1f52 100644 (file)
@@ -1,5 +1,5 @@
 # future/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bc43f4601c49ac8321ea30057ffdaf869f9f0c22..b55cda08d94af375e1b558e1abb7c7d91265e3e2 100644 (file)
@@ -1,5 +1,5 @@
 # future/engine.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b9671605f35693cb723549b9b48b3cbe20b6294b..9b499d0387253a632f349aa1ac6dd2534c542f27 100644 (file)
@@ -1,5 +1,5 @@
 # inspection.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1663f32847ee3dc263d9840e5bd34f59625b80b3..3f40b562b486f3248b03fbea5636fec0e788e29e 100644 (file)
@@ -1,5 +1,5 @@
 # log.py
-# Copyright (C) 2006-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2006-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 # Includes alterations by Vinay Sajip vinay_sajip@yahoo.co.uk
 #
index f6888aeee455e4975ef4c659d0407e9d33f027ba..70a1129431435e921dc68c3aaaf95568c84c89a5 100644 (file)
@@ -1,5 +1,5 @@
 # orm/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8c70a5d3848abd0df5282a0352e80f980bb671e7..e090a6595cfc8e41a0593818b5cf9f9bbed3ddc9 100644 (file)
@@ -1,5 +1,5 @@
 # orm/_orm_constructors.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d9abe28c012be5ee7b4dcb9da94c2ae3550bacd8..6c815169c5a06b969048e27c2c146cf9a81469ab 100644 (file)
@@ -1,5 +1,5 @@
 # orm/_typing.py
-# Copyright (C) 2022-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2022-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1098359ecaa229ec4ad352209ca49a00b40dcc84..dc9743b8b3d976274eb4157bb8773512f095bbe5 100644 (file)
@@ -1,5 +1,5 @@
 # orm/attributes.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 362346cc2a8a784ba2ea309cf26f4f014eea7f33..50f6703b5ed974f45a3cb05c287042ff780e60ce 100644 (file)
@@ -1,5 +1,5 @@
 # orm/base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 31caedc378577301ef8304bd998878eb3948842a..3f558d2d405b22562572a7f85f97898628e51c4a 100644 (file)
@@ -1,5 +1,5 @@
 # orm/bulk_persistence.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bb062c5c981cc4f6402710a5bf3d82e09a469582..2cce129cbfe16d998209a2828e532d2955729e9e 100644 (file)
@@ -1,5 +1,5 @@
 # orm/clsregistry.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index fa7f20ebc95c8390220a64e89019cf71fdc43018..6e5ded17af66407d9ff1e8bf5d92c2e317d31694 100644 (file)
@@ -1,5 +1,5 @@
 # orm/collections.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3e73d80e71681bd148244989f2a45e8354f751ff..7ab7e6279eabb2ee64f289ec723160345637549c 100644 (file)
@@ -1,5 +1,5 @@
 # orm/context.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9520fbb971c8fe145babca2f5b97595f7e2194bd..72dd652c78a9fca9996882f379be94efbd0dda20 100644 (file)
@@ -1,5 +1,5 @@
 # orm/decl_api.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3be539a2ebbc588884829c744ae40eeabe8a0946..6acdb58d46fd86f125734ccdc00cf9fe999f0dff 100644 (file)
@@ -1,5 +1,5 @@
 # orm/decl_base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e941dbcbf471be78d5a214081a4ed7064245fb27..9bdd92428e2467fc87d59b23ad6742e47587d2f9 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dependency.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c1fe9de85cab3cee69531498c0dd52f7a1544f07..a70f0b3ec37e85323097c535ff20fa5af6255589 100644 (file)
@@ -1,5 +1,5 @@
 # orm/descriptor_props.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1d0c03606c8038f8d4da17cc21add6dfb2897136..d5db03a19db983960732033cc990fc24c23806b3 100644 (file)
@@ -1,5 +1,5 @@
 # orm/dynamic.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f3796f03d1ed5da7dace5151baeddcad22f40b02..f2644548c111b618dace2b1d677f6bf6be58f8bb 100644 (file)
@@ -1,5 +1,5 @@
 # orm/evaluator.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 0ca620a601c53d44fc6fae54d94330ac3582aff7..185c0eaf6555bbdf1ae71803990dbaa00c23292f 100644 (file)
@@ -1,5 +1,5 @@
 # orm/events.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f30e50350bac3c73cb72f9b8ac499a7c90c8c2a5..8ab831002abf5daa7dbd201edf3016c2a52eb494 100644 (file)
@@ -1,5 +1,5 @@
 # orm/exc.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 81140a94ef5407c13fde4ff9cb8ccdf759b4925f..23682f7ef22ff8dd549761bec78e14b146299e12 100644 (file)
@@ -1,5 +1,5 @@
 # orm/identity.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6eb7773d0025f26a5c67830760b9658bef25ed2d..97d92c00ba7f33c9c78adad06f36c8cb18b33502 100644 (file)
@@ -1,5 +1,5 @@
 # orm/instrumentation.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cc3ad0d92390fd961d9225c8bcb7d8310d823977..5cab1d348c247e01b81102864decff83b63a90b6 100644 (file)
@@ -1,5 +1,5 @@
 # orm/interfaces.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 624e8c199ab50146b0bf363f661fc4f541fbbb28..1de71f9c71ca9f1d99acbb45940d289293ce1f54 100644 (file)
@@ -1,5 +1,5 @@
 # orm/loading.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a75789f851d8fbfdf40cf68b91fc68f22ce0e855..24ac0cc1b956c2aba78b7c6d326ead9099605cf7 100644 (file)
@@ -1,5 +1,5 @@
 # orm/mapped_collection.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b686996370c82e1be8ed2fa24f588960724b18c5..7ad4fc6be1418e6c964bb3702aded7643e4fe07d 100644 (file)
@@ -1,5 +1,5 @@
 # orm/mapper.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 354552a5a4045299a7a1e8d1dd78848c4729884f..c97afe7e613060efbbd15dac5f89faff5e996ca5 100644 (file)
@@ -1,5 +1,5 @@
 # orm/path_registry.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1728b4ac88c5a7d5bfb1c8dfd3e4ed803523bc8a..0c2529d5d13d4e283075c14b9e3fe4a66808188e 100644 (file)
@@ -1,5 +1,5 @@
 # orm/persistence.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4bb396edc5dc401a7ba56b7336eb733230e49f12..6e2e73dc46ffbdb305c49236e4f2f8f5792bede0 100644 (file)
@@ -1,5 +1,5 @@
 # orm/properties.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 28f193bc6c324b2ce7d7f26f0aa9685db5df3fa1..019a658f1e6d17ed9ef373d97c5f3e09496b7aa7 100644 (file)
@@ -1,5 +1,5 @@
 # orm/query.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3ab1cc64c707fbd31126134b7997c08618b958b7..a82b7e24cb752a65190c6286bfdb0d516c9cc020 100644 (file)
@@ -1,5 +1,5 @@
 # orm/relationships.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e720c7cebf751e11b74ecbf90f7954dff4ec8808..ead18d1862dced1a36dfc49f410cab425684c1a4 100644 (file)
@@ -1,5 +1,5 @@
 # orm/scoping.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 643eee5d53280c0a28ba09676cb482788780870d..26c907446e75372d29f6afb693ea284c7ad85bd0 100644 (file)
@@ -1,5 +1,5 @@
 # orm/session.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 20ecb2a6065724d268375747f80b467c3f6791cb..786b55e14951acf1f5303140aca13a7942a8d09a 100644 (file)
@@ -1,5 +1,5 @@
 # orm/state.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3d74ff2de224d41d930419e9cf712f9123053942..56963c6af1d30a126b3b3135a16d1d24791ae95c 100644 (file)
@@ -1,5 +1,5 @@
 # orm/state_changes.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1e58f4091a68422d7bb85f475d9c129edf07b2ba..d7671e079410470512fd4f61bbd64af193728e7a 100644 (file)
@@ -1,5 +1,5 @@
 # orm/strategies.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e4bbef685ba474c5e314d84432d7932e55605b4f..d6f676e99ebe7f8d2db9e8a7a11912091a4e06b6 100644 (file)
@@ -1,5 +1,5 @@
 # orm/strategy_options.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index dbe8fb7a251aa39a6d182ce53027912acd072733..db09a3e90270bb506a582700377e1c0664b548bb 100644 (file)
@@ -1,5 +1,5 @@
 # orm/sync.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 20fe022076b93fc25da74017bb3e31aabebd5f4a..7e2df2b0effd3847ed17d512bb5cb06f7d27af4b 100644 (file)
@@ -1,5 +1,5 @@
 # orm/unitofwork.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 94bd63ba988eb37db2c66aa3f8e3fde54b17a5e2..89d5ad491ce2f50c5eae924b525d91fdea0d8a55 100644 (file)
@@ -1,5 +1,5 @@
 # orm/util.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 416a0399f93ea3bbcc6b97d1f0e4fd5dc6b2448d..2f54fc9a86f45d55f5887260286bc0af7d15fb0e 100644 (file)
@@ -1,5 +1,5 @@
 # orm/writeonly.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 243862cdc530c1d52f37dda018367dd2a441ac8e..bdc97a8a888182e7c99cf1e5b278d7d524dd61b1 100644 (file)
@@ -1,5 +1,5 @@
 # pool/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 303ed3f18128b56b9ca4e84e1934a2ef132b6624..7818825de3531f7dfe7d578e008db4e23f0b7168 100644 (file)
@@ -1,5 +1,5 @@
 # pool/base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8e06fdbd2be2a76c928707c9b92e42e484aca08c..99d180abc99d25eebc455e94e5fa300b98a5cc5d 100644 (file)
@@ -1,5 +1,5 @@
 # pool/events.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9616ad29982ffc7c84268675e54c1b950198fe04..fed0bfc8f0b8a2da3d1cd0962727bc0582b808a0 100644 (file)
@@ -1,5 +1,5 @@
 # pool/impl.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 19782bd7cfdba99d4b6b1bd4dbbd58aa2a1b379e..9edca4e5cce9964e56ba47135b7fa8a58bf36f25 100644 (file)
@@ -1,5 +1,5 @@
 # schema.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a81509fed745d8f33cb27b3ef970cc55d81b8576..9e0d2ca2a79234c5efc02e6cc81ed64d6fd91f31 100644 (file)
@@ -1,5 +1,5 @@
 # sql/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5c0cc6247a93f466b7a4bc370c9ef16b9858c1be..a7ead521f86e1af0d18533c2e8d3f226359cd4a5 100644 (file)
@@ -1,5 +1,5 @@
 # sql/_dml_constructors.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a51e4a2cf4cb0a71b4120e3bae58cfb90decdd38..9dd2a58a1b867b1426c053e2d8c359c727ff39ef 100644 (file)
@@ -1,5 +1,5 @@
 # sql/_elements_constructors.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 26e289c779ff9f2e2b670ff636ec57170847ef01..bccb533ca0ef509482fab102b4bfea013871a0dd 100644 (file)
@@ -1,5 +1,5 @@
 # sql/_orm_types.py
-# Copyright (C) 2022-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2022-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index edff0d6691071e1498e5699f2b2f8b6e33070dc0..df372bf5d54815026a730d616492d32eebb16373 100644 (file)
@@ -1,5 +1,5 @@
 # sql/_py_util.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 27641c372cc08b0dfa282d2691a936122bd4df91..77e36d04bb1602a6f4b6488cda91648ff00195f2 100644 (file)
@@ -1,5 +1,5 @@
 # sql/_selectable_constructors.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 93e4d92c00c05c7847882b93e4920c76d3b5458d..f5f6fb1775b7ae9854bd0e7f9b8c7d01edb63541 100644 (file)
@@ -1,5 +1,5 @@
 # sql/_typing.py
-# Copyright (C) 2022-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2022-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 08ff47d3d64e48944e95c40edb0c18e949413d93..14e48bd2b8cb242af0cf6bcdee8251583397ed16 100644 (file)
@@ -1,5 +1,5 @@
 # sql/annotation.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index df79bc8471c263a7cf16cba073c3cb0baa33f68d..ee5583a74b1b1286ab4e65c1ad6ba0f8ec989e05 100644 (file)
@@ -1,5 +1,5 @@
 # sql/base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 094e8cac45448102d6113d80d1b17b93071466ff..0435be74628907be04c5d8475286c0e7137b40b7 100644 (file)
@@ -1,5 +1,5 @@
 # sql/cache_key.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3926e557a948451ed471e21e15890d0f8bfb58cb..3d33924d8948cbd7f8403661c2f6cfab2c6b6783 100644 (file)
@@ -1,5 +1,5 @@
 # sql/coercions.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a40335c61152ba4d85fc7053a64698a615e7aec6..2d6f33063162cb76cc50ca65d3bb54964e24266f 100644 (file)
@@ -1,5 +1,5 @@
 # sql/compiler.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e51403eceda09a096dacb796cad123ad9fae004a..fc6f51de1cc3f5cc931ae3caff77e2d766a69ca2 100644 (file)
@@ -1,5 +1,5 @@
 # sql/crud.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2c2c20ceef8298da3846a381e023aad107ef0841..378de6ea5b6a45ee2425021ebfe74dd29e8dad7c 100644 (file)
@@ -1,5 +1,5 @@
 # sql/ddl.py
-# Copyright (C) 2009-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2009-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5dbf3e3573fb65ed4f35eec4bc996cfb9e745995..939b14c5d4cf024f59a301d7e8dcc446407bd37f 100644 (file)
@@ -1,5 +1,5 @@
 # sql/default_comparator.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f798ab1e1867bddf8ff31a1c5cf805370d7c9d26..0e3f872988ea2c10993c1b1316c1c7a500343b3b 100644 (file)
@@ -1,5 +1,5 @@
 # sql/dml.py
-# Copyright (C) 2009-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2009-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c4e503b3cf0cf20db3d6dc430d8756da4db69c1b..e6d7ad7da8d9b3ce44c2aaa57ed64db0160a1659 100644 (file)
@@ -1,5 +1,5 @@
 # sql/elements.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 43102ecc2aeccb0ee3540e5bc5a13cf88ec6dfb5..1a6a9a6a7d0f41f851ee9fcf8132d4424825e3da 100644 (file)
@@ -1,5 +1,5 @@
 # sql/events.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b25fb50d40fa4c5942f0ebcebae18abf959980a7..ba42445d0131d94498bdf7dec7bdb0d793ec92a8 100644 (file)
@@ -1,5 +1,5 @@
 # sql/expression.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5b54f46ab738c0eb985c1d76f110f450cd2a2efb..dfa6f9df5caedc282d3cc6249d3a45a0992820ec 100644 (file)
@@ -1,5 +1,5 @@
 # sql/functions.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7aef605ac7219725bb1b5e20149f437a4ed93025..a53ebae797354e8650849bd38783c38ebfdccfd3 100644 (file)
@@ -1,5 +1,5 @@
 # sql/lambdas.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a0daa2ca8608838e999e29a2983458390205e812..7213ddb297e33968dbf484de9e7bf5a35f0d9cab 100644 (file)
@@ -1,5 +1,5 @@
 # sql/naming.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b0acbb6e5a072a49d1289802cf2b131dfd0c29aa..d91f7607063ae0af866eec5953d4e6d04263cd51 100644 (file)
@@ -1,5 +1,5 @@
 # sql/operators.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6f299224328a7a1137bfa1670347c54ecd79a49d..42c561cb4b71b6633397c8cf4329e29d4042ffe0 100644 (file)
@@ -1,5 +1,5 @@
 # sql/roles.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7d7c00bea67787ad2e596e1d49f7bfc9c7e71b22..78586937b14ccd04ed3866aef0548975bc391ebb 100644 (file)
@@ -1,5 +1,5 @@
 # sql/schema.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 439a3ba676399777f46354a2f84ed924b40b74f3..7e3c7150cfa3ed56793dd5d82b92c2ead6fd42aa 100644 (file)
@@ -1,5 +1,5 @@
 # sql/selectable.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 7e866cc032dafec75c3a6264964cb3505edc532a..91e382de6944ca4b26e907ddd9b5e339a876c760 100644 (file)
@@ -1,5 +1,5 @@
 # sql/sqltypes.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5758dff3c430ab1148665ad43502c7a448104ad9..6c44d52175e9d89aead5a97898d137c994208a82 100644 (file)
@@ -1,5 +1,5 @@
 # sql/traversals.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5b26e05cab099d39cbe46b03b827a302dafc3893..e540142d91ae37a7b01263838276d026d09d099b 100644 (file)
@@ -1,5 +1,5 @@
 # sql/type_api.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index ed2ae8032650a7fc8fdc9d3dc27561ea5624fa25..ac8b30eb3174d38f411d5281bf4ba3dc290e1c2f 100644 (file)
@@ -1,5 +1,5 @@
 # sql/util.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3bf9205e476529193b44d9c32774f58c7be63418..5d77d510829bae96e3a98c0e2c8ac301d7771cdd 100644 (file)
@@ -1,5 +1,5 @@
 # sql/visitors.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b218774b0d20df2f9d1a047bd6d13161db2239d8..d3a6f32c71620c8d33350bed91717124649427ac 100644 (file)
@@ -1,5 +1,5 @@
 # testing/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e7b4161672c11a2c646d9c00632f01a3fa5ec782..baef79d1817d97e3815f6645439adedb198012f8 100644 (file)
@@ -1,5 +1,5 @@
 # testing/assertions.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3865497ff4ccba5393510ccfb1c6b437dff6b065..e061f269a8589f5471ccbb406717746b189b0163 100644 (file)
@@ -1,5 +1,5 @@
 # testing/assertsql.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1f2bc559125023bee0e339cffaf07ef0168d5c4b..d58717aafbc2d204627a684d594adecb8322209f 100644 (file)
@@ -1,5 +1,5 @@
 # testing/asyncio.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index be22ff599130fe45aeacc15a29478228258e78c2..19e1e4bcc21d14f5b0b5a8c19d42aede60aeaaf8 100644 (file)
@@ -1,5 +1,5 @@
 # testing/config.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2bca37b2b8f2aa6d83d65c01f4326ef56f244b53..7e06366836220fe2bc25fc43ef205e4fa3579d14 100644 (file)
@@ -1,5 +1,5 @@
 # testing/engines.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3c43f04613f95113f5557a3e5220a28e93a5c9b3..8f0f36bd1c43cea2cc024b006a45efba35d58225 100644 (file)
@@ -1,5 +1,5 @@
 # testing/entities.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 09cf5b3247a9e5de2820ec02bf0b18a819fab664..7dca583f8ec581f82d5b8697da76fa9e67571015 100644 (file)
@@ -1,5 +1,5 @@
 # testing/exclusions.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 932051ce8ed92b50e8ab9aeb9e77b57498898301..5981fb583d249a877917cf22ec3fc9d66614857b 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 199ae7134ea90379f58e141e36e0a0faabcb22ab..0697f4902f203bd9acc2e66e1fdd1e3250b20e63 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures/base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 80e5ee07335992672fe709bc7ce673c475224fd6..730c7bdc2341caf1dadb83d08a3593c5c6cf9dfa 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures/mypy.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index da622c068cf2c4a4c93620f5d03b49ad0f12ce15..5ddd21ec64b74f1cc98268428b13d5302d647d56 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures/orm.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 911dddda312b3984884d848316dee5febf855550..1448510625d9ba879f3e72e6b7b9cbedb65fa037 100644 (file)
@@ -1,5 +1,5 @@
 # testing/fixtures/sql.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 89155a841900cc1c2b8bc8ae51a534648ff510b5..761891ad4ac0e68b287381d0abfe12728e1b73dd 100644 (file)
@@ -1,5 +1,5 @@
 # testing/pickleable.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 16031a9824be609ad999cd926010f8a22c9f14ac..0f98777319512f67ae594be10868dcfaf50aa392 100644 (file)
@@ -1,5 +1,5 @@
 # testing/plugin/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e331224b210dbda3f6cf9591de263f34259c35a6..d0d375458eda8cc0e9465b39466e3ef22a08132d 100644 (file)
@@ -1,5 +1,5 @@
 # testing/plugin/bootstrap.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1f17fc595f6f1e4393cd44813baf658939465609..11eb35cfa9b99d5b9704ebd96057547a8d622037 100644 (file)
@@ -1,5 +1,5 @@
 # testing/plugin/plugin_base.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 290e2cb5a4fb80b6060d8a059a42392d42f9ca14..a7cb4069d0f2744c5886036d5cfa19d35199d655 100644 (file)
@@ -1,5 +1,5 @@
 # testing/plugin/pytestplugin.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 5471b1cfd48aa8f7cf06e297ac3ba8308a082005..b9093c9017a21872dd9a9f8b8f81944daaa8f7ff 100644 (file)
@@ -1,5 +1,5 @@
 # testing/profiling.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 56b8c2972b8d1bde54d593b6e764617ef1954403..cdde264cb087d4809da7433af5c0c7637d685e2c 100644 (file)
@@ -1,5 +1,5 @@
 # testing/provision.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b288cbbaf49a71553b1eadf6849f12d93dc98ef9..7f92d761a073cd40ff4fe07d09e57df8db22a26c 100644 (file)
@@ -1,5 +1,5 @@
 # testing/requirements.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 72ef9754ef5cb0fdac39560a75c8bedf63b39b69..7dfd33d4d0936fd35b279b4dd51c2f8e767bb438 100644 (file)
@@ -1,5 +1,5 @@
 # testing/schema.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 08f31c6c06db8de0248c3d8851355db42f350c59..a146cb3163c2a934b68cf8a95c91fc59c9322a20 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index f73a5a6a78123c9b2b9dcaa06afbc099ebab6cc9..5d37880e1ebf75f7658b6316530ac78a13018b06 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_cte.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 2256a03163e6a7b653d2288914946abf9beca1d5..3d9b8ec13d035f6102e33de111f57f6afa56b822 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_ddl.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 793b401ba851c1463dc364971d733e494acf3804..07970c03ecbb154f3400284a45f92066032d75fa 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_deprecations.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 68ae800330a72c0bcba5f1f1538c3a8716247e54..696472037d12d6cddd8ebdb66c94b0983a39a689 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_dialect.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index e03d4c6430c8c87ea30905048e018f1821f131cd..cc30945cab6b3e8408c7fbebc1a23eaa37ba4dc6 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_insert.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 26839ab8777b4afbb6875e741a6072ae22c736a6..f0d4dca1c2643183d950ccc33857175a21ede108 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_reflection.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 3e688c7cebc4ee894d89e9c5ebeddb3b5db38db3..b3f432fb76c5772a7fcbe79c2ae940fba64f2b52 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_results.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 651e746d46b967dc44efec70ca8b7d801370cf90..c48ed355c914d12a61beee92c2fa7c7e82d603a5 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_rowcount.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4825c53a39615ad2d7832750ad517ba964b8b2c4..866bf09cb5d6bf53f8a10e3f54683bb733b62727 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_select.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index b3f63076ae4367c1fffee6eae5fa4195249aedea..138616f139970e67658feb3f4b73974bd5a93c6c 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_sequence.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c9a5d6c260159c88addecc58f7714fe8d364899b..4a7c1f199e134c1d89221a0cd44bbe00078158bc 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_types.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cd7f6309bd44ac11217aa818e44be0ab8afdb4ac..1f15ab5647f51019b8f3bbab07c36918d16237df 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_unicode_ddl.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 17238a0205f1ccbc43d57286dd3ab4907b141e54..a46d8fad87ec7dbaf95db8b83681a8cbc188afc3 100644 (file)
@@ -1,5 +1,5 @@
 # testing/suite/test_update_delete.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cf24b43a9693ec9e7b8f305308bb8bd10c03fd55..a6ce6ca3cc2eb154d4a65f9317d8ac11d9549792 100644 (file)
@@ -1,5 +1,5 @@
 # testing/util.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 6a2ac08e39e79c65e3d71e64341763c19d711e6a..baef037f73ef78abe94f0a6528fa2b9f994657f0 100644 (file)
@@ -1,5 +1,5 @@
 # testing/warnings.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index dfe6d2edb7ca4fa5951c2dab58a438bcbee7550d..a5bb56cf6616213c1c26c52534cc36542919baf6 100644 (file)
@@ -1,5 +1,5 @@
 # types.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index d8bcf01022812147e35bae62523af9e645c07d88..fa1e25455983b2be756aa40b5f3211a764cb1395 100644 (file)
@@ -1,5 +1,5 @@
 # util/__init__.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index bf5d7117db85f436cf66ce33437bd23d5428841d..aea6439c258747aa57dd91171ce69344bca9eb7f 100644 (file)
@@ -1,5 +1,5 @@
 # util/_collections.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 37e0c4e891c06ee7f62b3fd26827c5a29938f1a7..7713e236aca82066b709db4c9815367e4e915a50 100644 (file)
@@ -1,5 +1,5 @@
 # util/_has_cy.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 9dc0b8e57dd17461a601b347af570d06f467cfca..010d90e62e810c54fe862d4e558cc5850173cd0c 100644 (file)
@@ -1,5 +1,5 @@
 # util/_py_collections.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index cd071c376232f683cbaae00867d8ac22848e9341..c843024579dc5b44314c46243ef22d20db487c64 100644 (file)
@@ -1,5 +1,5 @@
 # util/compat.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 1d6e371c21d3f5aa5da7cb9a7a0d7ed80bafa108..53490f23c83175d1247590adecc6de2795f7d6a8 100644 (file)
@@ -1,5 +1,5 @@
 # util/concurrency.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 26d9924898be6a84a5752c545f534c309a545b21..3034715b5e661f6bce51bb3ae9ece84d64208389 100644 (file)
@@ -1,5 +1,5 @@
 # util/deprecations.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8cf26955b47f845fa6883ba9599ab475f5d76504..91d9562aae46429581af09787b97708aea0c9c18 100644 (file)
@@ -1,5 +1,5 @@
 # util/langhelpers.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c5b4a0fabb875a59705bef1c0be7a6067068416c..e91ce685450dff9d3f409e1cd518b694bec14c5a 100644 (file)
@@ -1,5 +1,5 @@
 # util/preloaded.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index a631fa67ea0d224b96794ee03cbc2957d5f3da3a..3545afef3845c1a3ae82d90df4237a36e1c9f285 100644 (file)
@@ -1,5 +1,5 @@
 # util/queue.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 4a9f9473de5783dd3673e7824e1eca678a9df399..a203a2ab75a8cfeaa209a61ae00f230e2b189f66 100644 (file)
@@ -1,5 +1,5 @@
 # util/tool_support.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8c6a663f6020994cfa1179bbf317e3105f0e0baf..aebbb436cec19c96cbe199fa5a0e9511d4b2837a 100644 (file)
@@ -1,5 +1,5 @@
 # util/topological.py
-# Copyright (C) 2005-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index c4f41d9151825518b6fb38fea7bdc05621a8910f..41b0aeeeb8b695d76c4d1eaf8089326fbfa5a392 100644 (file)
@@ -1,5 +1,5 @@
 # util/typing.py
-# Copyright (C) 2022-2023 the SQLAlchemy authors and contributors
+# Copyright (C) 2022-2024 the SQLAlchemy authors and contributors
 # <see AUTHORS file>
 #
 # This module is part of SQLAlchemy and is released under
index 8d82f8495581a6aee76fa50ea899dacd1438ad37..ba4cd5734f855f4571d2950cf539a6ee4913a5c5 100644 (file)
@@ -49,7 +49,7 @@ def run_file(cmd: code_writer_cmd, file: Path, update_year: bool):
 
 def run(cmd: code_writer_cmd, update_year: bool):
     i = 0
-    for ext in ('py', 'pyx', 'pxd'):
+    for ext in ("py", "pyx", "pxd"):
         for file in sa_path.glob(f"**/*.{ext}"):
             run_file(cmd, file, update_year)
             i += 1