summaryrefslogtreecommitdiff
path: root/doc/source/reference
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2019-07-15 08:45:19 -0500
committerGitHub <noreply@github.com>2019-07-15 08:45:19 -0500
commit16315fdfe94168a60aae83d895b0073f272d7f16 (patch)
treec0ec12fe2430bbec861196b49133513898d3fd6f /doc/source/reference
parent4abf4d1efc2a74ea56439282ce9405b74cb5a006 (diff)
parentba90fec0484f870851fe78722be3413f20dd93f1 (diff)
downloadnumpy-16315fdfe94168a60aae83d895b0073f272d7f16.tar.gz
Merge pull request #14011 from kritisingh1/udep
[DOC] Remove unused/deprecated functions
Diffstat (limited to 'doc/source/reference')
-rw-r--r--doc/source/reference/c-api.ufunc.rst22
1 files changed, 0 insertions, 22 deletions
diff --git a/doc/source/reference/c-api.ufunc.rst b/doc/source/reference/c-api.ufunc.rst
index ba5673cc3..92a679510 100644
--- a/doc/source/reference/c-api.ufunc.rst
+++ b/doc/source/reference/c-api.ufunc.rst
@@ -49,28 +49,6 @@ Macros
Used in universal function code to re-acquire the Python GIL if it
was released (because loop->obj was not true).
-.. c:function:: UFUNC_CHECK_ERROR(loop)
-
- A macro used internally to check for errors and goto fail if
- found. This macro requires a fail label in the current code
- block. The *loop* variable must have at least members (obj,
- errormask, and errorobj). If *loop* ->obj is nonzero, then
- :c:func:`PyErr_Occurred` () is called (meaning the GIL must be held). If
- *loop* ->obj is zero, then if *loop* ->errormask is nonzero,
- :c:func:`PyUFunc_checkfperr` is called with arguments *loop* ->errormask
- and *loop* ->errobj. If the result of this check of the IEEE
- floating point registers is true then the code redirects to the
- fail label which must be defined.
-
-.. c:function:: UFUNC_CHECK_STATUS(ret)
-
- Deprecated: use npy_clear_floatstatus from npy_math.h instead.
-
- A macro that expands to platform-dependent code. The *ret*
- variable can be any integer. The :c:data:`UFUNC_FPE_{ERR}` bits are
- set in *ret* according to the status of the corresponding error
- flags of the floating point processor.
-
Functions
---------