From 8fa5293cb82fcdd7fa507369a37130d9555aa5af Mon Sep 17 00:00:00 2001 From: Joren Hammudoglu Date: Thu, 6 Nov 2025 00:21:20 +0100 Subject: [PATCH] DOC: Remove nonexistent ``order`` parameter docs of ``ma.asanyarray`` (#30057) --- numpy/ma/core.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/numpy/ma/core.py b/numpy/ma/core.py index 05ea373a6a12..8a85960f622b 100644 --- a/numpy/ma/core.py +++ b/numpy/ma/core.py @@ -8633,9 +8633,6 @@ def asanyarray(a, dtype=None): Input data, in any form that can be converted to an array. dtype : dtype, optional By default, the data-type is inferred from the input data. - order : {'C', 'F'}, optional - Whether to use row-major ('C') or column-major ('FORTRAN') memory - representation. Default is 'C'. Returns -------