[Numpy-svn] r5977 - trunk/numpy/core/src

numpy-svn at scipy.org numpy-svn at scipy.org
Wed Nov 5 18:11:00 EST 2008


Author: charris
Date: 2008-11-05 17:10:56 -0600 (Wed, 05 Nov 2008)
New Revision: 5977

Modified:
   trunk/numpy/core/src/umathmodule.c.src
Log:
Fix reversal between radians and degrees.

Modified: trunk/numpy/core/src/umathmodule.c.src
===================================================================
--- trunk/numpy/core/src/umathmodule.c.src	2008-11-05 22:53:39 UTC (rev 5976)
+++ trunk/numpy/core/src/umathmodule.c.src	2008-11-05 23:10:56 UTC (rev 5977)
@@ -36,8 +36,8 @@
  */
 
 #define PI 3.14159265358979323846264338328 at c@
-#define degrees at c@ deg2rad at c@
-#define radians at c@ rad2deg at c@
+#define degrees at c@ rad2deg at c@
+#define radians at c@ deg2rad at c@
 
 static @type@
 rad2deg at c@(@type@ x) {




More information about the Numpy-svn mailing list