]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
add missing copyright to asyncio files
authorMike Bayer <mike_mp@zzzcomputing.com>
Tue, 2 Mar 2021 21:25:09 +0000 (16:25 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Tue, 2 Mar 2021 21:25:09 +0000 (16:25 -0500)
Change-Id: I6028b70bba76d6d9e1042762423d61f83644c085

lib/sqlalchemy/ext/asyncio/__init__.py
lib/sqlalchemy/ext/asyncio/engine.py
lib/sqlalchemy/ext/asyncio/events.py
lib/sqlalchemy/ext/asyncio/exc.py
lib/sqlalchemy/ext/asyncio/result.py
lib/sqlalchemy/ext/asyncio/session.py

index 9c7d6443cba053febb0747d5b6a188fd94a72117..b40dd6ac60e9006f5c2b0484a27caac03f7c1128 100644 (file)
@@ -1,3 +1,10 @@
+# ext/asyncio/__init__.py
+# Copyright (C) 2020-2021 the SQLAlchemy authors and contributors
+# <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 from .engine import AsyncConnection  # noqa
 from .engine import AsyncEngine  # noqa
 from .engine import AsyncTransaction  # noqa
index db95ab371260f9c94d8d14e045be31a6da97ce8d..c637b3d9026b2745695a89af1b7828660b809c5f 100644 (file)
@@ -1,3 +1,10 @@
+# ext/asyncio/engine.py
+# Copyright (C) 2020-2021 the SQLAlchemy authors and contributors
+# <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 from typing import Any
 from typing import Callable
 from typing import Mapping
index a8daefc4b73840d06a790ea512261f32b0db10d5..bafcf5a4dd2de9cbc22f1ad15264982a6e92700e 100644 (file)
@@ -1,3 +1,10 @@
+# ext/asyncio/events.py
+# Copyright (C) 2020-2021 the SQLAlchemy authors and contributors
+# <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 from .engine import AsyncConnectable
 from .session import AsyncSession
 from ...engine import events as engine_event
index 6137bf6df6142cdccbb8e51370c85aae2325e468..ef9e76370a4560a7148d7f67eed96e92e592a67a 100644 (file)
@@ -1,3 +1,10 @@
+# ext/asyncio/exc.py
+# Copyright (C) 2020-2021 the SQLAlchemy authors and contributors
+# <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 from ... import exc
 
 
index 915226b8cf0e474049308a03de146a076fc0fe5d..c299dafc9916e68c6992b46871f5eff1381b0854 100644 (file)
@@ -1,3 +1,10 @@
+# ext/asyncio/result.py
+# Copyright (C) 2020-2021 the SQLAlchemy authors and contributors
+# <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 import operator
 
 from ... import util
index 93af178a35196cd260ae9c5eeb037b0c0088ed74..c8377aa65f30b8c1bc02a1064b3daa2df161abd5 100644 (file)
@@ -1,3 +1,10 @@
+# ext/asyncio/session.py
+# Copyright (C) 2020-2021 the SQLAlchemy authors and contributors
+# <see AUTHORS file>
+#
+# This module is part of SQLAlchemy and is released under
+# the MIT License: http://www.opensource.org/licenses/mit-license.php
+
 from typing import Any
 from typing import Callable
 from typing import Mapping