blob: bcada0fea89723f73f8c74ff23909f39a94e358c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#ifndef NUMPY_CORE_SRC_MULTIARRAY_METHODS_H_
#define NUMPY_CORE_SRC_MULTIARRAY_METHODS_H_
#include "npy_import.h"
extern NPY_NO_EXPORT PyMethodDef array_methods[];
/*
* Pathlib support, takes a borrowed reference and returns a new one.
* The new object may be the same as the old.
*/
static inline PyObject *
NpyPath_PathlikeToFspath(PyObject *file)
{
static PyObject *os_PathLike = NULL;
static PyObject *os_fspath = NULL;
npy_cache_import("numpy.compat", "os_PathLike", &os_PathLike);
if (os_PathLike == NULL) {
return NULL;
}
npy_cache_import("numpy.compat", "os_fspath", &os_fspath);
if (os_fspath == NULL) {
return NULL;
}
if (!PyObject_IsInstance(file, os_PathLike)) {
Py_INCREF(file);
return file;
}
return PyObject_CallFunctionObjArgs(os_fspath, file, NULL);
}
#endif /* NUMPY_CORE_SRC_MULTIARRAY_METHODS_H_ */
|