]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
2024 setup
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 1 Jan 2024 22:04:05 +0000 (17:04 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 1 Jan 2024 22:04:05 +0000 (17:04 -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/_concurrency_py3k.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

index 4687b4915fcb46946c97a3aa9f3da633a70ee2f0..1cd1abfd07fc628c88e5ce45cb686b96ceeb8a3e 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 c6986366e1c3f9b4b6c83d7952cbdcdc497f9a31..9b861639a49bd1e2ab1a77db2310f915833118f3 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 997407ccd58429ba671dc7685ea22b1eadf7d961..6ba228a6253ae244a4557aeda0164d53c5e06d17 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 c8a0a36abcd0cdb6f5482c0897d76baa222fb947..65482a76b278e7c754bc62ceadcc4ee8a85df646 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 d55129bed814316c1d53d5eeb2faa311cb8cf993..9928a879ec5bc812b8c923c7e6583d82152bd1f5 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 c51b3eefca5d86221293f17ea80e76097b52b7fe..78bf4636afd3f22faa77e0a2601b2bbb499a02b2 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 10dd69e99df4e83e10dab96426025242314e32fe..1a6144a28eb37af3bdfd5e9c4a145d3b6ff52a6a 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 00dbe6d9594232ab3be0a818baa3d3a60897a627..7e93b1232e10739d714a571a3e87a64454e750a9 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 ea7ac156fe1b26cacb6d84e33a126a1938fc779a..e5f3cb50c586c981955603b19355665dc7dfaa56 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 2c7fd592deac6e738e8bd292669748d398d03a0b..6ab6097985a068d3b0cfe8fcff2458edebb0928d 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 e553d4700fb6cdd24cc38854c32aaa8c16047e0b..6c915634d119dfd3d0680c515d645126c4e32af9 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 d22cbd6f110a56357387d70199830651f2e7d01e..e2487790071a421f47db796d6fd18141581177ed 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 86e801f8d529c4ace2118a2f7b43d71a1c8a3909..16130ca4f10d58557cf9a5bda8be87bfc593ca6d 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 553d8f0bea1fb3d2260e7afc8524e7d86752fb0d..0d8054a9db93693038964cc9a7004674e39cce9d 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 4bf0d3e9e7d85bab9a34e63c634007561ecab752..9060f599e01c2440e167ba09df8472699465eb54 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 66e94429cb1d1315641d7622b9597cbe5208d3a1..ef1e566c29e6bd73f8187e8ef4561f6dbaa883d1 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 9b147a7014b97ac9a04827585e9974aec535e673..3d95ac586256a40452c1c74bd9d6dc54acdeb986 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 0aa341983059ff7485f500417d045904b4f6ee10..0a0d9571f7130a89b54b5a1a224c573f0147d016 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 31df13453487f46f5879aab8c69f4533d4baa0c4..9c5a0e4bd40eb06035d0e812ba9be7e1bd2c4e29 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 8564db6f22ee3f981053546b0b47d10d3c4c6e1c..78c707b26d886419c00dfc6faeec2394e55b122a 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 18568c7f28fcc84afdb1d162233391288501f3a1..9247c730e7f05dcdde1cae79f9a8f1227ad9a7fa 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 963bd005a4be3fcdbdbc006d7b221766dfbf4568..4fff1bf8970f1f5f0a80e712cb910235b5682731 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 5aadc329e56250d97ea098fcc06c7243db330159..5a35c0a27e623fbde0db48c9784ba9fb7a57d788 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 ff4dea086617a3f1a550933c1333ba9d1c6bef50..0dc65c007b399705e86f2f0237189ec9c8d33658 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 1fe37d925f2b6a55205b2567bff6bf0c8c35a433..7123d0608db3e658f4dedb000f946749b9852c91 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 55c1a3eb44f5e6bb7d8163a35003daa43857b425..9046e33b75f8ed2497a432d7ddf2ce526182c1d0 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 df36c38641677b7f57334cc270fcdcf305361a09..53577b4da3e487f26f039ca1935f8ebe4e17dca0 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 78aac6d572d03dbe600209d07633a519300faa64..fa6dd7c3c3a9f60de50ed6b0d80dbe799cab639d 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 3a4964c4609250226a3addf368821821d50203bd..534a1b648617586aa453cd9b03445a3829debb1a 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 60bd2ae4901097fc7b97c4e277a4fc2b9e1f9ce2..95cec3b874dd2284ccd8f9c327174330de950018 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 6e8578863eda53f982699beed6f4874a3c822212..3786cfe4a8fbca3729a81f2422b0af237be572f2 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 1a54dfd49a5d28a61069adfb53ff784c424c85a7..f0ba693f44393cef1490cd81595f9cb930716f07 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 b12d80ac4f7d382397307d1e449301c05981ded1..9360e4a3435b035896ec58b19285bedbab32966f 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 fed07334fb588020b4a70fc212c2dc2b8afb71fb..3d9018257e86ae7e3716c815530cf516af588717 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 c66d876e087e1a88fd5b6d244b251b7df5bcd8ab..9b8ddb10770f4c6221f8d3b13e40066a2889ff63 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 5da7ee9b22840465a03ac69067eb6f34ac091c51..a13e23fc1921f44774ed284efa5f35c5060273e2 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 7e27eff4177f03180048ea456bcd795af1eee54a..b19d23b277b17a4a3812346e0ebb119fa8a76b22 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 4af98da06582ac84d2009e0ba78282e71dbe9580..ff8271fafdb0f7e20b844706b34c19b31b12011f 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 161b32015664aace924abf9db96b72a13c32ce02..e80a8af6e295b3094050b22fb77112242fcab072 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 d9e1f854d77e8bba58ee4f962ebe9cda4c9aba63..e628a682c6cbc38353c81edffe0bdf0d6eca8270 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 c62851e1b3b23a04c1ea6116e8416f246a6264b1..7de0e31d4d3fa98b9df58024ce739b1489502175 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 ea2f1a12e9365d562aace63b6c2a4e18476c5813..a6186df7f28b4f37f2d25c2d2871f3f6ea955be6 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 c25a8f85d87461aa2c08639dfb07b6b927144963..29fd652931f3cd2a9f081d94c8f158b42c5e7da4 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 90ad1d4764c2c9df1424d4ac7b868edac1a8c546..18e0171989e56b8445ac99f19cb9bbd903fdd0fb 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 ced015088cb87d52de74c884d87aaa544a46fbea..5bb2dd7778d5929883c5c9f2b6810d492910d156 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 41e8b6eb164a4713ef12cc45b97a3b2726d1b8a2..c1e0fa9dc406458461b6bb7157e05ce6f5f1c100 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 f99e93fbac6e0b5eac45ae6244420f4b100fa013..024507ec7989c711dd927aeb091137a36074c8c7 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 104c5958a07583810ca3214ab438f9e5d2781a09..f8e3e73883ab41caa1835eca415adab5e6aba5ff 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 831b90809b28b410a6310056e5ad3aaa1e5c07f2..640a27de2d7e6a168f05cb3de0fe03ec5b2efd07 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 b4b8bcfd26e1102d69e16f04a86d6f2dbc3ec0aa..6c82bab831627da2b3c3ebe5e4a523aa62b6f88b 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 06bbcae2e4b58e01cfbd2be8d6b7c9da408bd61b..7fcd7e9f8d8fa36b9d0e986fd7f7385c84e0b90e 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 4ca6ed338f40e9ae5e5ce017c94afe84dcf5c9d3..e51e0a59e9c3858f0d4a55a15cec5dc99672849b 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 531be31555ec3b5a6e338c86ff7af0cbb727920a..4a65fe672944fba84a3f4baf8a0c6fd277923e12 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 1d3f2f483f69e4af2c2888fb4545ed3e2962fc96..98a0abbaa755b9e2c9f79b8c868d073ef4a105d3 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 556e6c81534fb08b43274af7ba5b39ca098944ea..fcde05721cfe1b01e74cc81002b8d632877c7f99 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 91b939e0af50928b099f6b65a184ebea96fb3f34..ee33d46616a8befcf050ebc40800c4d1ae1ed9db 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 9226b01e61ac4eefa0a5012a132848f4fc8b9db4..e60f09c23947b6083645565e4608dce268105c81 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 19551831fe337d75fcf83c74244aa95ab55e5261..617bf56a6a46f54c73f25933c0003f12adc7ba37 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 cccebe65ba817a77eb8217d8bfe6941e12667b5c..2f06ae71a0696f75b397f4fdb15967e80a96f3e4 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 4236dcf92e2ea061715f2e05647d4999ac41532e..17dc861c95ad931359ba1da95d0bf9a4ffc71b41 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 8430203dee28824464877e98d5750b61a497dd3f..ed24851df04e2a4feccb71acecb87df7769697fd 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 749f9c160e846eb36d34abdddb4b665088fdee3c..65b182b9e07b1d00a48ed4e08a281a2ffc2a966d 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 47644e3d28b4ea549790b0ed42c5cb4841018d71..2752813515a6cc776b597cb25f179cb59e614fcd 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 884d558138af079b013dd784cd0a12030df0dd3c..a0ccc15294a19ef806f2fd62fc7b51e6f948221e 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 4dd5176a3ee4f6848994a8fb156a6aa06e4c4c2e..5e95f94a2c295267cdd5733afc6c52305d778686 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 31630755fc8e00a48eddd9d9290912a9a2e2fc94..69424e7ccb65612d332ba8cf88ec5b99763475a5 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 1e602165c801d0f409a72821f42a7a0576fbc17f..615577b742abe35216c138ef653d9022df429547 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 47da59779fb97618c8572ec9161c443d92fa9785..82a349409b06f2124a06aedd4030e1919ee911b8 100644 (file)
@@ -1,5 +1,5 @@
 # util/_concurrency_py3k.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 7dba5092bcf0b44125ff7b83422cd9027e3a6ab3..745620d92a29a590de2422e1b68041cbbf41448a 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 73cdafea5dbad2fbb581789d9361cfc68a7b662b..e1b5e661433fa730df584a2469494706294b78c6 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 1141cbc165a1af21f7428d7a5893daee268357dc..65a62052125f0b2d457d7c977d379015275b3731 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 9c56487c400909e58eb8132d8a387203ea420b6f..0a8d87b188022d16fa96fbec27e04370b6f58931 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 b641c910c7177bfd45c17948793f7a247aa66fe3..08ee9ead8e1dd3caedae8f868b466c2f099b8162 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 faf71c89a295f916eb7aead6ed2317a15ea998d7..0a10e9e8b093ccde7cada4b8725e06c96d5ee9f2 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