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

Function array_ravel

numpy/core/src/multiarray/methods.c:2656–2669  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2654
2655
2656static PyObject *
2657array_ravel(PyArrayObject *self,
2658 PyObject *const *args, Py_ssize_t len_args, PyObject *kwnames)
2659{
2660 NPY_ORDER order = NPY_CORDER;
2661 NPY_PREPARE_ARGPARSER;
2662
2663 if (npy_parse_arguments("ravel", args, len_args, kwnames,
2664 "|order", PyArray_OrderConverter, &order,
2665 NULL, NULL, NULL) < 0) {
2666 return NULL;
2667 }
2668 return PyArray_Ravel(self, order);
2669}
2670
2671
2672static PyObject *

Callers

nothing calls this directly

Calls 1

PyArray_RavelFunction · 0.85

Tested by

no test coverage detected