# test builtin help functiontry:helpexceptNameError:print("SKIP")raiseSystemExithelp()# no argshelp(help)# help for a functionhelp(int)# help for a classhelp(1)# help for an instanceimportmicropythonhelp(micropython)# help for a modulehelp('modules')# list available modulesprint('done')# so last bit of output is predictable