| 360 | |
| 361 | template<class T> |
| 362 | constexpr py_object_v |
| 363 | py_object() |
| 364 | { |
| 365 | return { |
| 366 | sizeof(T), |
| 367 | {offsetof(T, ob_type)}, |
| 368 | }; |
| 369 | } |
| 370 | |
| 371 | template<class T> |
| 372 | constexpr py_bytes_v |
nothing calls this directly
no outgoing calls
no test coverage detected