| 196 | |
| 197 | template<class T> |
| 198 | constexpr py_is_v |
| 199 | py_isv312() |
| 200 | { |
| 201 | return { |
| 202 | sizeof(T), |
| 203 | {offsetof(T, next)}, |
| 204 | {offsetof(T, threads.head)}, |
| 205 | {offsetof(T, gc)}, |
| 206 | {offsetof(T, imports.modules)}, |
| 207 | {offsetof(T, sysdict)}, |
| 208 | {offsetof(T, builtins)}, |
| 209 | {offsetof(T, ceval.gil)}, |
| 210 | }; |
| 211 | } |
| 212 | |
| 213 | template<class T> |
| 214 | constexpr py_gc_v |
nothing calls this directly
no outgoing calls
no test coverage detected