QUERY · ISSUE
Print traceback without an exception
Hello, in CPython, there is a way to print a traceback outside of an exception, through traceback.print_stack() function. What would it take to add similar functionality to micropython?
CANDIDATE · ISSUE
'module' object has no attribute 'exc_info'
sys.exc_info doesn't seem to be implemented yet, but sys.print_exception was already exist.
I think it won't be too difficult to open the exc_info interface based on the implementation of sys.print_exception, but it will be useful for logging and troubleshooting.
some module like traceback and logging need this interface to work normally.
Hope you can adopt my suggestion.
Tks!