Initialization function for the module */
| 2368 | |
| 2369 | /* Initialization function for the module */ |
| 2370 | PyMODINIT_FUNC PyInit__pocketfft_internal(void) |
| 2371 | { |
| 2372 | PyObject *m; |
| 2373 | m = PyModule_Create(&moduledef); |
| 2374 | if (m == NULL) { |
| 2375 | return NULL; |
| 2376 | } |
| 2377 | |
| 2378 | /* Import the array object */ |
| 2379 | import_array(); |
| 2380 | |
| 2381 | /* XXXX Add constants here */ |
| 2382 | |
| 2383 | return m; |
| 2384 | } |
nothing calls this directly
no outgoing calls
no test coverage detected