summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2023-03-26 08:44:02 +0300
committerGitHub <noreply@github.com>2023-03-26 08:44:02 +0300
commit1915e33df68ea3367fee8026f017178a3cf425c6 (patch)
treea8e1fac02e6a56cb1b5657c63d44912986243877 /doc
parentad09c69fafe5d198fab979e66fe1c13f09ed347d (diff)
parent85a311a79089f72f1ab0dadc3ab8d5cefb799c48 (diff)
downloadnumpy-1915e33df68ea3367fee8026f017178a3cf425c6.tar.gz
Merge pull request #23061 from MatteoRaso/vectorize
ENH: Enabled the use of numpy.vectorize as a decorator
Diffstat (limited to 'doc')
-rw-r--r--doc/release/upcoming_changes/23061.new_feature.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/23061.new_feature.rst b/doc/release/upcoming_changes/23061.new_feature.rst
new file mode 100644
index 000000000..8c28bb2c4
--- /dev/null
+++ b/doc/release/upcoming_changes/23061.new_feature.rst
@@ -0,0 +1,6 @@
+``vectorize`` can now be used as a decorator
+--------------------------------------------
+When using ``vectorize`` as a decorator, the user
+needs to specify the keywords for the arguments.
+``vectorize`` will continue to accept arguments
+positionally when used normally.