(cookie, param, val)
| 359 | |
| 360 | |
| 361 | def magic_setparam(cookie, param, val): |
| 362 | if not _has_param: |
| 363 | raise NotImplementedError("magic_setparam not implemented") |
| 364 | v = c_size_t(val) |
| 365 | return _magic_setparam(cookie, param, byref(v)) |
| 366 | |
| 367 | |
| 368 | def magic_getparam(cookie, param): |
no outgoing calls
no test coverage detected
searching dependent graphs…