summaryrefslogtreecommitdiff
path: root/doc/release
diff options
context:
space:
mode:
authorMark Wiebe <mwwiebe@gmail.com>2011-08-19 09:59:21 -0700
committerCharles Harris <charlesr.harris@gmail.com>2011-08-27 07:26:57 -0600
commite5b207316cb71a5633068df27cc5492386056bbf (patch)
tree11bd9730bf64b138cfeb4592cbfc1b1b3b4606db /doc/release
parent2b72d06fdc8e29cc2906890038ede8d74f4327a1 (diff)
downloadnumpy-e5b207316cb71a5633068df27cc5492386056bbf.tar.gz
DOC: Tweak to the release notes
Diffstat (limited to 'doc/release')
-rw-r--r--doc/release/2.0.0-notes.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/2.0.0-notes.rst
index f4640dfc6..3f4b62096 100644
--- a/doc/release/2.0.0-notes.rst
+++ b/doc/release/2.0.0-notes.rst
@@ -63,7 +63,7 @@ Differences with R:
This may have a practical advantage in spite of violating the
NA theoretical model, so NumPy could adopt the behavior if necessary
-Reduction UFuncs Generalize axis= Parmaeter
+Reduction UFuncs Generalize axis= Parameter
-------------------------------------------
Any ufunc.reduce function call, as well as other reductions like
@@ -77,7 +77,7 @@ Reduction UFuncs New keepdims= Parameter
There is a new keepdims= parameter, which if set to True, doesn't
throw away the reduction axes but instead sets them to have size one.
-when this option is set, the reduction result will broadcast correctly
+When this option is set, the reduction result will broadcast correctly
to the original operand which was reduced.
@@ -97,7 +97,8 @@ errors in projects that depend on NumPy.
The functions np.diag, np.diagonal, and <ndarray>.diagonal now return a
view into the original array instead of making a copy. This makes these
functions more consistent with NumPy's general approach of taking views
-where possible, and performs much faster as well.
+where possible, and performs much faster as well. This has the
+potential to break code that assumes a copy is made instead of a view.
The function np.concatenate tries to match the layout of its input
arrays. Previously, the layout did not follow any particular reason,