micropython/tests/basics/fun_str.py
Damien George 214179b430 tests: Add tests for SyntaxError, TypeError, and other missing things.
This is intended to improve coverage of the test suite.
2015-03-25 23:10:09 +00:00

6 lines
60 B
Python

# test str of function
def f():
pass
print(str(f)[:8])