MCPcopy Create free account
hub / github.com/bloomberg/pystack / py_code

Function py_code

src/pystack/_pystack/version.cpp:19–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17
18template<class T>
19constexpr py_code_v
20py_code()
21{
22 return {
23 sizeof(T),
24 {offsetof(T, co_filename)},
25 {offsetof(T, co_name)},
26 {offsetof(T, co_lnotab)},
27 {offsetof(T, co_firstlineno)},
28 {offsetof(T, co_argcount)},
29 {offsetof(T, co_varnames)},
30 };
31}
32
33template<class T>
34constexpr py_code_v

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected