Inspect - String of Code

Riassunto:

returns the caller the next, string of code Documentazione



Codice

import inspect
current_frame = inspect.currentframe()
call_frame = inspect.getouterframes(current_frame, 2)
print('caller frame:', call_frame[1][5])
 
>>> ['    globals.DEBUG = True\n', '    assert D() == 1\n']