builtin_help.py 364 B

1234567891011121314151617
  1. # test builtin help function
  2. try:
  3. help
  4. except NameError:
  5. print("SKIP")
  6. raise SystemExit
  7. help() # no args
  8. help(help) # help for a function
  9. help(int) # help for a class
  10. help(1) # help for an instance
  11. import micropython
  12. help(micropython) # help for a module
  13. help('modules') # list available modules
  14. print('done') # so last bit of output is predictable