Searched defs:FrameSummary (Results 1 – 4 of 4) sorted by relevance
35 struct FrameSummary { struct36 py::str filename;37 int lineno;38 py::str name;39 py::object globals;41 py::object line() const { in line()60 bool operator==(const FrameSummary& other) const { in operator ==()65 bool operator!=(const FrameSummary& other) const { return !(*this == other); } in operator !=()144 .def("__len__", [](const FrameSummary&) { return 4; }); in PYBIND11_MODULE()
156 FrameSummary = _tf_stack.FrameSummary variable
34 FrameSummary = collections.namedtuple( variable
227 class FrameSummary: class