summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ext
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2021-03-02 16:25:09 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2021-03-02 16:25:09 -0500
commit5024ed693927f2ae2cd1b487b4e0397f115d1c32 (patch)
tree40221e4be528aba7444939de67cc000441af6c5e /lib/sqlalchemy/ext
parent92e3272602723225e07dfa6e32b722ac439c713a (diff)
downloadsqlalchemy-5024ed693927f2ae2cd1b487b4e0397f115d1c32.tar.gz
add missing copyright to asyncio files
Change-Id: I6028b70bba76d6d9e1042762423d61f83644c085
Diffstat (limited to 'lib/sqlalchemy/ext')
-rw-r--r--lib/sqlalchemy/ext/asyncio/__init__.py7
-rw-r--r--lib/sqlalchemy/ext/asyncio/engine.py7
-rw-r--r--lib/sqlalchemy/ext/asyncio/events.py7
-rw-r--r--lib/sqlalchemy/ext/asyncio/exc.py7
-rw-r--r--lib/sqlalchemy/ext/asyncio/result.py7
-rw-r--r--lib/sqlalchemy/ext/asyncio/session.py7
6 files changed, 42 insertions, 0 deletions
diff --git a/lib/sqlalchemy/ext/asyncio/__init__.py b/lib/sqlalchemy/ext/asyncio/__init__.py
index 9c7d6443c..b40dd6ac6 100644
--- a/lib/sqlalchemy/ext/asyncio/__init__.py
+++ b/lib/sqlalchemy/ext/asyncio/__init__.py
@@ -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
diff --git a/lib/sqlalchemy/ext/asyncio/engine.py b/lib/sqlalchemy/ext/asyncio/engine.py
index db95ab371..c637b3d90 100644
--- a/lib/sqlalchemy/ext/asyncio/engine.py
+++ b/lib/sqlalchemy/ext/asyncio/engine.py
@@ -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
diff --git a/lib/sqlalchemy/ext/asyncio/events.py b/lib/sqlalchemy/ext/asyncio/events.py
index a8daefc4b..bafcf5a4d 100644
--- a/lib/sqlalchemy/ext/asyncio/events.py
+++ b/lib/sqlalchemy/ext/asyncio/events.py
@@ -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
diff --git a/lib/sqlalchemy/ext/asyncio/exc.py b/lib/sqlalchemy/ext/asyncio/exc.py
index 6137bf6df..ef9e76370 100644
--- a/lib/sqlalchemy/ext/asyncio/exc.py
+++ b/lib/sqlalchemy/ext/asyncio/exc.py
@@ -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
diff --git a/lib/sqlalchemy/ext/asyncio/result.py b/lib/sqlalchemy/ext/asyncio/result.py
index 915226b8c..c299dafc9 100644
--- a/lib/sqlalchemy/ext/asyncio/result.py
+++ b/lib/sqlalchemy/ext/asyncio/result.py
@@ -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
diff --git a/lib/sqlalchemy/ext/asyncio/session.py b/lib/sqlalchemy/ext/asyncio/session.py
index 93af178a3..c8377aa65 100644
--- a/lib/sqlalchemy/ext/asyncio/session.py
+++ b/lib/sqlalchemy/ext/asyncio/session.py
@@ -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