(subtype, shape, dtype)
| 7 | # so don't remove the name here, or you'll |
| 8 | # break backward compatibility. |
| 9 | def _reconstruct(subtype, shape, dtype): |
| 10 | from numpy import ndarray |
| 11 | return ndarray.__new__(subtype, shape, dtype) |
| 12 | |
| 13 | |
| 14 | # Pybind11 (in versions <= 2.11.1) imports _dtype_from_pep3118 from the |
nothing calls this directly
no test coverage detected
searching dependent graphs…