py: Add option to micropython.qstr_info() to dump actual qstrs.

This commit is contained in:
Damien George
2015-02-10 11:02:28 +00:00
parent 53716fcc3e
commit ea0461dcd3
3 changed files with 19 additions and 2 deletions

View File

@@ -72,5 +72,6 @@ mp_uint_t qstr_len(qstr q);
const byte* qstr_data(qstr q, mp_uint_t *len);
void qstr_pool_info(mp_uint_t *n_pool, mp_uint_t *n_qstr, mp_uint_t *n_str_data_bytes, mp_uint_t *n_total_bytes);
void qstr_dump_data(void);
#endif // __MICROPY_INCLUDED_PY_QSTR_H__