extmod: Actually expose the ubinascii python methods.

This commit is contained in:
Daniel Campora 2015-05-22 09:51:29 +02:00
parent a3a14b9db7
commit 7bd273b818
1 changed files with 3 additions and 0 deletions

View File

@ -30,4 +30,7 @@
extern mp_obj_t mod_binascii_hexlify(mp_uint_t n_args, const mp_obj_t *args);
extern mp_obj_t mod_binascii_unhexlify(mp_obj_t data);
MP_DECLARE_CONST_FUN_OBJ(mod_binascii_hexlify_obj);
MP_DECLARE_CONST_FUN_OBJ(mod_binascii_unhexlify_obj);
#endif /* MICROPY_EXTMOD_MODUBINASCII */