Skip to content

Commit 1b623da

Browse files
committed
add SPDX licensing
1 parent fc9d7e4 commit 1b623da

File tree

8 files changed

+32
-0
lines changed

8 files changed

+32
-0
lines changed

asyncio/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 Damien P. George
2+
#
3+
# SPDX-License-Identifier: MIT
4+
#
15
# MicroPython uasyncio module
26
# MIT license; Copyright (c) 2019 Damien P. George
37

asyncio/core.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 Damien P. George
2+
#
3+
# SPDX-License-Identifier: MIT
4+
#
15
# MicroPython uasyncio module
26
# MIT license; Copyright (c) 2019 Damien P. George
37

asyncio/event.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019-2020 Damien P. George
2+
#
3+
# SPDX-License-Identifier: MIT
4+
#
15
# MicroPython uasyncio module
26
# MIT license; Copyright (c) 2019-2020 Damien P. George
37

asyncio/funcs.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019-2020 Damien P. George
2+
#
3+
# SPDX-License-Identifier: MIT
4+
#
15
# MicroPython uasyncio module
26
# MIT license; Copyright (c) 2019-2020 Damien P. George
37

asyncio/lock.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019-2020 Damien P. George
2+
#
3+
# SPDX-License-Identifier: MIT
4+
#
15
# MicroPython uasyncio module
26
# MIT license; Copyright (c) 2019-2020 Damien P. George
37

asyncio/manifest.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019 Damien P. George
2+
#
3+
# SPDX-License-Identifier: MIT
4+
#
15
# This list of frozen files doesn't include task.py because that's provided by the C module.
26
freeze(
37
"..",

asyncio/stream.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019-2020 Damien P. George
2+
#
3+
# SPDX-License-Identifier: MIT
4+
#
15
# MicroPython uasyncio module
26
# MIT license; Copyright (c) 2019-2020 Damien P. George
37

asyncio/task.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2019-2020 Damien P. George
2+
#
3+
# SPDX-License-Identifier: MIT
4+
#
15
# MicroPython uasyncio module
26
# MIT license; Copyright (c) 2019-2020 Damien P. George
37

0 commit comments

Comments
 (0)