From: Mike Bayer Date: Tue, 2 Mar 2021 21:25:09 +0000 (-0500) Subject: add missing copyright to asyncio files X-Git-Tag: rel_1_4_0~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5024ed693927f2ae2cd1b487b4e0397f115d1c32;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git add missing copyright to asyncio files Change-Id: I6028b70bba76d6d9e1042762423d61f83644c085 --- diff --git a/lib/sqlalchemy/ext/asyncio/__init__.py b/lib/sqlalchemy/ext/asyncio/__init__.py index 9c7d6443cb..b40dd6ac60 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 +# +# +# 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 db95ab3712..c637b3d902 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 +# +# +# 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 a8daefc4b7..bafcf5a4dd 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 +# +# +# 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 6137bf6df6..ef9e76370a 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 +# +# +# 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 915226b8cf..c299dafc99 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 +# +# +# 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 93af178a35..c8377aa65f 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 +# +# +# 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