Hi Travis,<br><br>I looked through the recent commits to the datetime branch and, as I'm working on cleaning up arraytypes I would appreciate it if you can merge up your changes there as soon as possible to minimize conflicts. Also, this change looks like a reversion of current trunk to something older:<br>
<br><pre style="display: block; font-family: courier new,monospace;">@@ -2688,10 +2690,8 @@<br>         goto err;<br>     }<br>-    /*<br>-     * PyExc_Exception should catch all the standard errors that are<br>-     * now raised instead of the string exception "multiarray.error".<br>
-     * This is for backward compatibility with existing code.<br>-     */<br>-    PyDict_SetItemString (d, "error", PyExc_Exception);<br>+    /* Fixme: we might want to remove this old string exception string */<br>
+    s = PyString_FromString("multiarray.error");<br>+    PyDict_SetItemString (d, "error", s);<br>+    Py_DECREF(s);<br>     s = PyString_FromString("3.0");<br>     PyDict_SetItemString(d, "__version__", s);</pre>
And I am concerned that there might be other such cases.<br><br>Chuck<br>