diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-24 17:58:40 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-24 17:58:40 +0000 |
commit | b1b17f10d24a62112d843bc1b99aab977f3c6680 (patch) | |
tree | 5a698d480a2d878d199ab0d98ad4d928194e8ae5 | |
parent | 0917323eb52e2eed8bc84bf844cbcdcd6e6bd12e (diff) | |
download | numpy-b1b17f10d24a62112d843bc1b99aab977f3c6680.tar.gz |
Fix umath module load mistake.
-rw-r--r-- | numpy/core/src/umathmodule.c.src | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/src/umathmodule.c.src b/numpy/core/src/umathmodule.c.src index d2d0ca075..a3e6d346e 100644 --- a/numpy/core/src/umathmodule.c.src +++ b/numpy/core/src/umathmodule.c.src @@ -2054,6 +2054,7 @@ DL_EXPORT(void) initumath(void) { PyDict_SetItemString(d, "conj", s); PyDict_SetItemString(d, "mod", s2); + return; err: /* Check for errors */ if (!PyErr_Occurred()) { |