summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2012-01-03 06:34:26 -0700
committerCharles Harris <charlesr.harris@gmail.com>2012-01-09 11:09:37 -0700
commit88163cb1ffb3a98a4ecc74481312a618813a9f1e (patch)
treef26d17d3a4c82cad8c77090155a3e5f29f7b3467 /doc
parent77b8a2608168235fbb96543ddaac0d7b4ef663ff (diff)
downloadnumpy-88163cb1ffb3a98a4ecc74481312a618813a9f1e.tar.gz
DOC: Move removing deprecated imports note to deprecation section.
Diffstat (limited to 'doc')
-rw-r--r--doc/release/2.0.0-notes.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/release/2.0.0-notes.rst b/doc/release/2.0.0-notes.rst
index da49ff98d..915fb9170 100644
--- a/doc/release/2.0.0-notes.rst
+++ b/doc/release/2.0.0-notes.rst
@@ -149,8 +149,6 @@ objects. For example the expression (3 and 'test') produces the string
'test', and now np.logical_and(np.array(3, 'O'), np.array('test', 'O'))
produces 'test' as well.
-The deprecated imports in the polynomial package have been removed.
-
Deprecations
============
@@ -164,3 +162,5 @@ now you can test your code against the deprecated C API by #defining
NPY_NO_DEPRECATED_API before including any NumPy headers. Expect
something similar for PyArray_Descr* and other core objects in the
future as preparation for NumPy 2.0.
+
+The deprecated imports in the polynomial package have been removed.