Damien George
8 years ago
3 changed files with 32 additions and 1 deletions
@ -0,0 +1,17 @@ |
|||
# test builtin help function |
|||
|
|||
try: |
|||
help |
|||
except NameError: |
|||
print("SKIP") |
|||
import sys |
|||
sys.exit() |
|||
|
|||
help() # no args |
|||
help(help) # help for a function |
|||
help(int) # help for a class |
|||
help(1) # help for an instance |
|||
import micropython |
|||
help(micropython) # help for a module |
|||
|
|||
print('done') # so last bit of output is predictable |
@ -0,0 +1,14 @@ |
|||
######## |
|||
object <function> is of type function |
|||
object <class 'int'> is of type type |
|||
from_bytes -- <classmethod> |
|||
to_bytes -- <function> |
|||
object 1 is of type int |
|||
from_bytes -- <classmethod> |
|||
to_bytes -- <function> |
|||
object <module 'micropython'> is of type module |
|||
__name__ -- micropython |
|||
const -- <function> |
|||
opt_level -- <function> |
|||
######## |
|||
done |
Loading…
Reference in new issue