Skip to content

Commit 90a299b

Browse files
committed
added //| to (hopefully) get CI to pass
1 parent 79e3c3d commit 90a299b

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

locale/circuitpython.pot

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: PACKAGE VERSION\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2020-12-08 09:56-0800\n"
11+
"POT-Creation-Date: 2021-01-05 11:08-0800\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <[email protected]>\n"
@@ -3438,6 +3438,10 @@ msgstr ""
34383438
msgid "shape must be a tuple"
34393439
msgstr ""
34403440

3441+
#: shared-module/msgpack/__init__.c
3442+
msgid "short read"
3443+
msgstr ""
3444+
34413445
#: py/objstr.c
34423446
msgid "sign not allowed in string format specifier"
34433447
msgstr ""

shared-bindings/msgpack/ExtType.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ STATIC mp_obj_t mod_msgpack_exttype_make_new(const mp_obj_type_t *type, size_t n
6161

6262
//| code: int
6363
//| """The type code, in range 0~127."""
64+
//| ...
6465
//|
6566
STATIC mp_obj_t mod_msgpack_exttype_get_code(mp_obj_t self_in) {
6667
mod_msgpack_extype_obj_t *self = MP_OBJ_TO_PTR(self_in);
@@ -88,6 +89,7 @@ const mp_obj_property_t mod_msgpack_exttype_code_obj = {
8889

8990
//| data: bytes
9091
//| """Data."""
92+
//| ...
9193
//|
9294
STATIC mp_obj_t mod_msgpack_exttype_get_data(mp_obj_t self_in) {
9395
mod_msgpack_extype_obj_t *self = MP_OBJ_TO_PTR(self_in);

shared-bindings/msgpack/__init__.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@
8989
//| function called for python objects that do not have
9090
//| a representation in msgpack format.
9191
//| """
92+
//| ...
9293
//|
9394
STATIC mp_obj_t mod_msgpack_pack(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
9495
enum { ARG_obj, ARG_buffer, ARG_default };
@@ -119,6 +120,7 @@ MP_DEFINE_CONST_FUN_OBJ_KW(mod_msgpack_pack_obj, 1, mod_msgpack_pack);
119120
//| :param Optional[bool] use_list: return array as list or tuple (use_list=False).
120121
//| :return object: object read from buffer.
121122
//| """
123+
//| ...
122124
//|
123125
STATIC mp_obj_t mod_msgpack_unpack(size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
124126
enum { ARG_buffer, ARG_ext_hook, ARG_use_list };

0 commit comments

Comments
 (0)