| 108 | |
| 109 | |
| 110 | static int |
| 111 | fb_del(stream *strm) |
| 112 | { |
| 113 | python_chunks_from_file *fb = (python_chunks_from_file *)strm; |
| 114 | |
| 115 | Py_XDECREF(fb->file); |
| 116 | Py_XDECREF(fb->read); |
| 117 | Py_XDECREF(fb->chunksize); |
| 118 | Py_XDECREF(fb->chunk); |
| 119 | |
| 120 | PyMem_FREE(strm); |
| 121 | |
| 122 | return 0; |
| 123 | } |
| 124 | |
| 125 | |
| 126 | NPY_NO_EXPORT stream * |
no outgoing calls
no test coverage detected