summaryrefslogtreecommitdiffstatshomepage
path: root/lib/utils/pyhelp.h
Commit message (Collapse)AuthorAge
* lib/utils: Remove old pyhelp helper, replaced with py/builtinhelp.c.Damien George2017-01-22
| | | | | | Ports should no longer use pyhelp_print_obj but instead should define MICROPY_PY_BUILTINS_HELP to 1 and then specify their help text using MICROPY_PY_BUILTINS_HELP_TEXT.
* lib/utils/pyhelp: Extract implementation of help(obj) to a library function.Colin Hogben2016-04-25
Several ports use identical code for the 1-argument form of the builtin help function. Move this code to a library function to allow easier re-use by ports.