Skip to content

Commit b74b18e

Browse files
authored
Merge pull request #70 from adafruit/v1.22-merge
Merge changes from MicroPython v.122 release; annotate CIRCUITPY-CHANGES
2 parents dc25e8c + f5b6921 commit b74b18e

10 files changed

+241
-144
lines changed

Diff for: .pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repos:
1818
- id: end-of-file-fixer
1919
- id: trailing-whitespace
2020
- repo: https://github.com/pycqa/pylint
21-
rev: v2.17.4
21+
rev: v3.2.6
2222
hooks:
2323
- id: pylint
2424
name: pylint (library code)

Diff for: asyncio/__init__.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
# SPDX-FileCopyrightText: 2019 Damien P. George
1+
# CIRCUITPY-CHANGE: SPDX
2+
# SPDX-FileCopyrightText: 2019-2020 Damien P. George
23
#
34
# SPDX-License-Identifier: MIT
4-
#
5-
# MicroPython uasyncio module
5+
6+
# MicroPython asyncio module
67
# MIT license; Copyright (c) 2019 Damien P. George
78
#
9+
# CIRCUITPY-CHANGE
810
# This code comes from MicroPython, and has not been run through black or pylint there.
911
# Altering these files significantly would make merging difficult, so we will not use
1012
# pylint or black.
@@ -13,6 +15,7 @@
1315

1416
from .core import *
1517

18+
# CIRCUITPY-CHANGE: use CircuitPython version
1619
__version__ = "0.0.0+auto.0"
1720
__repo__ = "https://github.com/Adafruit/Adafruit_CircuitPython_asyncio.git"
1821

@@ -29,6 +32,7 @@
2932
"StreamWriter": "stream",
3033
}
3134

35+
3236
# Lazy loader, effectively does:
3337
# global attr
3438
# from .mod import attr

0 commit comments

Comments
 (0)