@@ -14,6 +14,7 @@ QDEF(MP_QSTR___locals__, (const byte*)"\x7b\x0a" "__locals__")
1414QDEF (MP_QSTR___main__ , (const byte * )"\x8e\x08" "__main__" )
1515QDEF (MP_QSTR___module__ , (const byte * )"\xff\x0a" "__module__" )
1616QDEF (MP_QSTR___name__ , (const byte * )"\xe2\x08" "__name__" )
17+ QDEF (MP_QSTR___dict__ , (const byte * )"\x7f\x08" "__dict__" )
1718QDEF (MP_QSTR___hash__ , (const byte * )"\xf7\x08" "__hash__" )
1819QDEF (MP_QSTR___next__ , (const byte * )"\x02\x08" "__next__" )
1920QDEF (MP_QSTR___qualname__ , (const byte * )"\x6b\x0c" "__qualname__" )
@@ -128,6 +129,7 @@ QDEF(MP_QSTR_locals, (const byte*)"\x3b\x06" "locals")
128129QDEF (MP_QSTR_map , (const byte * )"\xb9\x03" "map" )
129130QDEF (MP_QSTR_max , (const byte * )"\xb1\x03" "max" )
130131QDEF (MP_QSTR_min , (const byte * )"\xaf\x03" "min" )
132+ QDEF (MP_QSTR_default , (const byte * )"\xce\x07" "default" )
131133QDEF (MP_QSTR_namedtuple , (const byte * )"\x1e\x0a" "namedtuple" )
132134QDEF (MP_QSTR_next , (const byte * )"\x42\x04" "next" )
133135QDEF (MP_QSTR_oct , (const byte * )"\xfd\x03" "oct" )
@@ -265,9 +267,12 @@ QDEF(MP_QSTR_version, (const byte*)"\xbf\x07" "version")
265267QDEF (MP_QSTR_version_info , (const byte * )"\x6e\x0c" "version_info" )
266268QDEF (MP_QSTR_implementation , (const byte * )"\x17\x0e" "implementation" )
267269QDEF (MP_QSTR_print_exception , (const byte * )"\x1c\x0f" "print_exception" )
270+ QDEF (MP_QSTR_struct , (const byte * )"\x12\x06" "struct" )
268271QDEF (MP_QSTR_ustruct , (const byte * )"\x47\x07" "ustruct" )
269272QDEF (MP_QSTR_pack , (const byte * )"\xbc\x04" "pack" )
273+ QDEF (MP_QSTR_pack_into , (const byte * )"\x1f\x09" "pack_into" )
270274QDEF (MP_QSTR_unpack , (const byte * )"\x07\x06" "unpack" )
275+ QDEF (MP_QSTR_unpack_from , (const byte * )"\x0e\x0b" "unpack_from" )
271276QDEF (MP_QSTR_calcsize , (const byte * )"\x4d\x08" "calcsize" )
272277QDEF (MP_QSTR_gc , (const byte * )"\x61\x02" "gc" )
273278QDEF (MP_QSTR_collect , (const byte * )"\x9b\x07" "collect" )
@@ -278,7 +283,6 @@ QDEF(MP_QSTR_mem_free, (const byte*)"\xcb\x08" "mem_free")
278283QDEF (MP_QSTR_mem_alloc , (const byte * )"\x52\x09" "mem_alloc" )
279284QDEF (MP_QSTR_help , (const byte * )"\x94\x04" "help" )
280285QDEF (MP_QSTR_collections , (const byte * )"\xe0\x0b" "collections" )
281- QDEF (MP_QSTR_struct , (const byte * )"\x12\x06" "struct" )
282286QDEF (MP_QSTR_microbit , (const byte * )"\xc0\x08" "microbit" )
283287QDEF (MP_QSTR_reset , (const byte * )"\x10\x05" "reset" )
284288QDEF (MP_QSTR_sleep , (const byte * )"\xea\x05" "sleep" )
0 commit comments