tf.compat.v1.flags.tf_decorator.tf_stack.convert_stack

View source on GitHub

Converts a stack extracted using extract_stack() to a traceback stack.

stack A list of n 5-tuples, (filename, lineno, name, frame_globals, func_start_lineno).
include_func_start_lineno True if function start line number should be included as the 5th entry in return tuples.

A tuple of n 4-tuples or 5-tuples (filename, lineno, name, code, [optional: func_start_lineno]), where the code tuple element is calculated from the corresponding elements of the input tuple.