[Numpy-svn] r8369 - trunk/doc/release

numpy-svn at scipy.org numpy-svn at scipy.org
Mon Apr 26 23:35:37 EDT 2010


Author: charris
Date: 2010-04-26 22:35:37 -0500 (Mon, 26 Apr 2010)
New Revision: 8369

Added:
   trunk/doc/release/2.0.0-notes.rst
Removed:
   trunk/doc/release/1.5.0-notes.rst
Log:
Move 1.5.0 release notes to 2.0.0.

Deleted: trunk/doc/release/1.5.0-notes.rst
===================================================================
--- trunk/doc/release/1.5.0-notes.rst	2010-04-27 03:35:31 UTC (rev 8368)
+++ trunk/doc/release/1.5.0-notes.rst	2010-04-27 03:35:37 UTC (rev 8369)
@@ -1,37 +0,0 @@
-=========================
-NumPy 1.5.0 Release Notes
-=========================
-
-
-Plans
-=====
-
-This release has the following aims:
-
-* Python 3 compatibility
-* :pep:`3118` compatibility
-
-
-Highlights
-==========
-
-
-New features
-============
-
-Warning on casting complex to real
-~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-
-Numpy now emits a `numpy.ComplexWarning` when a complex number is cast
-into a real number. For example:
-
-    >>> x = np.array([1,2,3])
-    >>> x[:2] = np.array([1+2j, 1-2j])
-    ComplexWarning: Casting complex values to real discards the imaginary part
-
-The cast indeed discards the imaginary part, and this may not be the
-intended behavior in all cases, hence the warning. This warning can be
-turned off in the standard way:
-
-    >>> import warnings
-    >>> warnings.simplefilter("ignore", np.ComplexWarning)

Copied: trunk/doc/release/2.0.0-notes.rst (from rev 8368, trunk/doc/release/1.5.0-notes.rst)
===================================================================
--- trunk/doc/release/2.0.0-notes.rst	                        (rev 0)
+++ trunk/doc/release/2.0.0-notes.rst	2010-04-27 03:35:37 UTC (rev 8369)
@@ -0,0 +1,37 @@
+=========================
+NumPy 2.0.0 Release Notes
+=========================
+
+
+Plans
+=====
+
+This release has the following aims:
+
+* Python 3 compatibility
+* :pep:`3118` compatibility
+
+
+Highlights
+==========
+
+
+New features
+============
+
+Warning on casting complex to real
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+Numpy now emits a `numpy.ComplexWarning` when a complex number is cast
+into a real number. For example:
+
+    >>> x = np.array([1,2,3])
+    >>> x[:2] = np.array([1+2j, 1-2j])
+    ComplexWarning: Casting complex values to real discards the imaginary part
+
+The cast indeed discards the imaginary part, and this may not be the
+intended behavior in all cases, hence the warning. This warning can be
+turned off in the standard way:
+
+    >>> import warnings
+    >>> warnings.simplefilter("ignore", np.ComplexWarning)




More information about the Numpy-svn mailing list