| 2654 | |
| 2655 | |
| 2656 | static PyObject * |
| 2657 | array_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 | |
| 2672 | static PyObject * |
nothing calls this directly
no test coverage detected