summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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