| 402 | } |
| 403 | |
| 404 | void |
| 405 | PLy_procedure_delete(PLyProcedure *proc) |
| 406 | { |
| 407 | Py_XDECREF(proc->code); |
| 408 | Py_XDECREF(proc->statics); |
| 409 | Py_XDECREF(proc->globals); |
| 410 | MemoryContextDelete(proc->mcxt); |
| 411 | } |
| 412 | |
| 413 | /* |
| 414 | * Decide whether a cached PLyProcedure struct is still valid |
no outgoing calls
no test coverage detected