| 431 | } |
| 432 | |
| 433 | static void PythonSessionRequirements_Free(FlatExecutionPlan* fep, void* arg){ |
| 434 | PythonRequirementCtx** reqs = arg; |
| 435 | for(size_t i = 0 ; i < array_len(reqs) ; ++i){ |
| 436 | PythonRequirementCtx_Free(reqs[i]); |
| 437 | } |
| 438 | array_free(reqs); |
| 439 | } |
| 440 | |
| 441 | static PythonRequirementCtx* PythonRequirementCtx_ShallowCopy(PythonRequirementCtx* req){ |
| 442 | ++req->refCount; |
nothing calls this directly
no test coverage detected