@@ -127,7 +127,7 @@ STATIC mp_obj_t mod_binascii_b2a_base64(size_t n_args, const mp_obj_t *pos_args,
127127 mp_arg_val_t args [MP_ARRAY_SIZE (allowed_args )];
128128 mp_arg_parse_all (n_args - 1 , pos_args + 1 , kw_args , MP_ARRAY_SIZE (allowed_args ), allowed_args , args );
129129 uint8_t newline = args [ARG_newline ].u_bool ;
130- // CIRCUITPY
130+ // CIRCUITPY-CHANGE
131131 check_not_unicode (pos_args [0 ]);
132132 mp_buffer_info_t bufinfo ;
133133 mp_get_buffer_raise (pos_args [0 ], & bufinfo , MP_BUFFER_READ );
@@ -182,7 +182,7 @@ STATIC mp_obj_t mod_binascii_b2a_base64(size_t n_args, const mp_obj_t *pos_args,
182182}
183183STATIC MP_DEFINE_CONST_FUN_OBJ_KW (mod_binascii_b2a_base64_obj , 1 , mod_binascii_b2a_base64 );
184184
185- // CIRCUITPY uses a self-contained implementation of CRC32,
185+ // CIRCUITPY-CHANGE: uses a self-contained implementation of CRC32,
186186// instead of depending on uzlib, like MicroPython.
187187
188188/*
@@ -223,7 +223,7 @@ STATIC MP_DEFINE_CONST_FUN_OBJ_KW(mod_binascii_b2a_base64_obj, 1, mod_binascii_b
223223
224224STATIC mp_obj_t mod_binascii_crc32 (size_t n_args , const mp_obj_t * args ) {
225225 mp_buffer_info_t bufinfo ;
226- // CIRCUITPY
226+ // CIRCUITPY-CHANGE
227227 check_not_unicode (args [0 ]);
228228 mp_get_buffer_raise (args [0 ], & bufinfo , MP_BUFFER_READ );
229229 uint32_t crc = (n_args > 1 ) ? mp_obj_get_int_truncated (args [1 ]) : 0 ;
0 commit comments