diff options
author | Eric Jones <eric@enthought.com> | 2002-01-17 01:51:11 +0000 |
---|---|---|
committer | Eric Jones <eric@enthought.com> | 2002-01-17 01:51:11 +0000 |
commit | a0bf2b3a3ee73b05e2266b9d18de6257ea21366c (patch) | |
tree | 33bd0d2bfcf9890c1e6d4c1798fe0873dc37499e /weave/conversion_code.py | |
parent | ec1bba279c2b78aa7192a1b047e426b917ac9479 (diff) | |
download | numpy-a0bf2b3a3ee73b05e2266b9d18de6257ea21366c.tar.gz |
error in variable name
Diffstat (limited to 'weave/conversion_code.py')
-rwxr-xr-x | weave/conversion_code.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weave/conversion_code.py b/weave/conversion_code.py index cf5edf0fe..dbae86f54 100755 --- a/weave/conversion_code.py +++ b/weave/conversion_code.py @@ -47,7 +47,7 @@ char* find_type(PyObject* py_obj) return "unkown type"; } -void throw_error(PyObject* py_obj, const char* msg) +void throw_error(PyObject* exc, const char* msg) { PyErr_SetString(exc, msg); throw 1; |