remove a ~ from doc that causes an error; add ExtType.c to circuitpy_defns.mk

This commit is contained in:
Bernhard Boser 2020-12-07 16:08:16 -08:00
parent b5b6b6d0f2
commit 534b48fcfe
3 changed files with 3 additions and 2 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-12-07 15:35-0800\n"
"POT-Creation-Date: 2020-12-07 16:05-0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -407,6 +407,7 @@ $(filter $(SRC_PATTERNS), \
microcontroller/ResetReason.c \
microcontroller/RunMode.c \
msgpack/__init__.c \
msgpack/ExtType.c \
supervisor/RunReason.c \
)

View File

@ -34,7 +34,7 @@
//| def __init__(self, code: int, data: bytes) -> None:
//| """Constructor"""
//|
//| :param int code: type code in range 0~127.
//| :param int code: type code in range 0 .. 127.
//| :param bytes data: representation.
STATIC mp_obj_t mod_msgpack_exttype_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {