MCPcopy Create free account
hub / github.com/numpy/numpy / PyInit__pocketfft_internal

Function PyInit__pocketfft_internal

numpy/fft/_pocketfft.c:2370–2384  ·  view source on GitHub ↗

Initialization function for the module */

Source from the content-addressed store, hash-verified

2368
2369/* Initialization function for the module */
2370PyMODINIT_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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected