| 113 | */ |
| 114 | #ifndef Py_SET_SIZE |
| 115 | static inline void _Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) { |
| 116 | ob->ob_size = size; |
| 117 | } |
| 118 | #define Py_SET_SIZE(ob, size) _Py_SET_SIZE((PyVarObject *)(ob), size) |
| 119 | #endif |
| 120 |
nothing calls this directly
no outgoing calls
no test coverage detected