| 370 | |
| 371 | template<class T> |
| 372 | constexpr py_bytes_v |
| 373 | py_bytes() |
| 374 | { |
| 375 | return { |
| 376 | sizeof(T), |
| 377 | {offsetof(T, ob_base.ob_size)}, |
| 378 | {offsetof(T, ob_sval)}, |
| 379 | }; |
| 380 | } |
| 381 | |
| 382 | template<class T> |
| 383 | constexpr py_unicode_v |
nothing calls this directly
no outgoing calls
no test coverage detected