Skip to content

Commit

Permalink
BUG: Minimal fix for ticket numpy#1339.
Browse files Browse the repository at this point in the history
  • Loading branch information
charris committed Dec 19, 2009
1 parent 043d56b commit f084695
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numpy/core/src/multiarray/scalartypes.c.src
Original file line number Diff line number Diff line change
Expand Up @@ -1526,10 +1526,10 @@ static PyMethodDef gentype_methods[] = {
METH_VARARGS | METH_KEYWORDS, NULL},
{"sort",
(PyCFunction)gentype_sort,
METH_VARARGS, NULL},
METH_VARARGS | METH_KEYWORDS, NULL},
{"argsort",
(PyCFunction)gentype_argsort,
METH_VARARGS, NULL},
METH_VARARGS | METH_KEYWORDS, NULL},
{"searchsorted",
(PyCFunction)gentype_searchsorted,
METH_VARARGS, NULL},
Expand Down

0 comments on commit f084695

Please sign in to comment.