Skip to content

Commit 3c72432

Browse files
committed
cosmetics
1 parent a5c3dc2 commit 3c72432

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

shared-bindings/msgpack/ExtType.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ 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-
//|
6564

6665
STATIC mp_obj_t mod_msgpack_exttype_get_code(mp_obj_t self_in) {
6766
mod_msgpack_extype_obj_t *self = MP_OBJ_TO_PTR(self_in);
@@ -89,7 +88,6 @@ const mp_obj_property_t mod_msgpack_exttype_code_obj = {
8988

9089
//| data: bytes
9190
//| """Data."""
92-
//|
9391

9492
STATIC mp_obj_t mod_msgpack_exttype_get_data(mp_obj_t self_in) {
9593
mod_msgpack_extype_obj_t *self = MP_OBJ_TO_PTR(self_in);

shared-bindings/msgpack/__init__.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
//| from io import BytesIO
4747
//|
4848
//| b = BytesIO()
49-
//| msgpack.pack({'list': [True, False, None, 1, 'abc'], 'str': 'blah'}, b)
49+
//| msgpack.pack({'list': [True, False, None, 1, 3.14], 'str': 'blah'}, b)
5050
//| b.seek(0)
5151
//| print(msgpack.unpack(b))
5252
//|

0 commit comments

Comments
 (0)