diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2009-05-16 03:59:28 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2009-05-16 03:59:28 +0000 |
commit | e090679430cb3be55c27d07dfac62f08c0f4ac78 (patch) | |
tree | 492fe340e398f72c62d629d2a50d0cb981a78e8c | |
parent | 2506c5cd73a86335f9203720cc08c4e24e92f9b3 (diff) | |
download | numpy-e090679430cb3be55c27d07dfac62f08c0f4ac78.tar.gz |
Comment spot where exception string is inserted in the dictionary.
-rw-r--r-- | numpy/core/src/multiarray/multiarraymodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/src/multiarray/multiarraymodule.c b/numpy/core/src/multiarray/multiarraymodule.c index a9f749b5a..8326a199b 100644 --- a/numpy/core/src/multiarray/multiarraymodule.c +++ b/numpy/core/src/multiarray/multiarraymodule.c @@ -2534,6 +2534,7 @@ PyMODINIT_FUNC initmultiarray(void) { if (PyErr_Occurred()) { goto err; } + /* Fixme: we might want to remove this old string exception string */ PyDict_SetItemString (d, "error", PyString_FromString("multiarray.error")); s = PyString_FromString("3.0"); PyDict_SetItemString(d, "__version__", s); |