diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-10-18 07:09:19 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-10-18 07:09:19 +0000 |
commit | ed7b368d34b95f8391d5dbec35e6ae7e7f4b77dc (patch) | |
tree | aaca802cb751238c1dfef08b3e7674410189d1cc /numpy/core/src | |
parent | 5d17dd076b199e34b2718d3088f702fe1cb32132 (diff) | |
download | numpy-ed7b368d34b95f8391d5dbec35e6ae7e7f4b77dc.tar.gz |
Change to sig (signature) keyword.
Diffstat (limited to 'numpy/core/src')
-rw-r--r-- | numpy/core/src/ufuncobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/src/ufuncobject.c b/numpy/core/src/ufuncobject.c index 62bcff847..878ebde53 100644 --- a/numpy/core/src/ufuncobject.c +++ b/numpy/core/src/ufuncobject.c @@ -1574,7 +1574,7 @@ construct_loop(PyUFuncObject *self, PyObject *args, PyObject *kwds, PyArrayObjec name = self->name ? self->name : ""; - /* Extract type= keyword and + /* Extract sig= keyword and extobj= keyword if present Raise an error if anything else present in the keyword dictionary */ @@ -1589,7 +1589,7 @@ construct_loop(PyUFuncObject *self, PyObject *args, PyObject *kwds, PyArrayObjec if (strncmp(PyString_AS_STRING(key), "extobj", 6) == 0) { extobj = value; } - else if (strncmp(PyString_AS_STRING(key), "type", 5) == 0) { + else if (strncmp(PyString_AS_STRING(key), "sig", 5) == 0) { typetup = value; } else { |