diff options
author | Matti Picus <matti.picus@gmail.com> | 2018-10-16 06:17:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-16 06:17:12 +0300 |
commit | 04c76c58d6fcbb2031cc3392fcf88c8dce5f33c9 (patch) | |
tree | 8f74491888b7bb986623c95cfc439a7549511deb | |
parent | 9af9b14dff1479c1887e6afbf86e9bb6dfed5bf4 (diff) | |
parent | fdc5288205e0ef2b7ff9a99f26854f19527f0bb5 (diff) | |
download | numpy-04c76c58d6fcbb2031cc3392fcf88c8dce5f33c9.tar.gz |
Merge pull request #12173 from shoyer/nep-18-update-notes
NEP: add notes about updates to NEP-18
-rw-r--r-- | doc/neps/nep-0018-array-function-protocol.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/neps/nep-0018-array-function-protocol.rst b/doc/neps/nep-0018-array-function-protocol.rst index 210021d99..4e0fee384 100644 --- a/doc/neps/nep-0018-array-function-protocol.rst +++ b/doc/neps/nep-0018-array-function-protocol.rst @@ -403,6 +403,12 @@ from a tuple ``*args`` and dict ``**kwargs``.) This shouldn't stop us from writing overrides for functions with non-generic signatures that can't use the decorator, but we should consider these cases carefully. +.. note:: + + The code for ``array_function_dispatch`` above has been updated from the + original version of this NEP to match the actual + `implementation in NumPy <https://github.com/numpy/numpy/blob/e104f03ac8f65ae5b92a9b413b0fa639f39e6de2/numpy/core/overrides.py>`_. + Extensibility ~~~~~~~~~~~~~ |