diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2008-11-17 03:27:46 +0000 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2008-11-17 03:27:46 +0000 |
commit | 55204c0208f8bf452598a5114d5100866e4d8304 (patch) | |
tree | 54a49b2a31b4f61809d36f3f8c80461c1263a3ab /numpy | |
parent | bf9eb68b1df8a45e5b631369bfb04fd846ef8ae0 (diff) | |
download | numpy-55204c0208f8bf452598a5114d5100866e4d8304.tar.gz |
Add umathmodule.c.src to files scanned for ufunc api.
This is preparation for splitting the umathmodule.c.src file.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/core/code_generators/genapi.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/core/code_generators/genapi.py b/numpy/core/code_generators/genapi.py index 6c57b6de0..1d6db59d3 100644 --- a/numpy/core/code_generators/genapi.py +++ b/numpy/core/code_generators/genapi.py @@ -18,6 +18,7 @@ API_FILES = ['arraymethods.c', 'multiarraymodule.c', 'scalartypes.inc.src', 'ufuncobject.c', + 'umathmodule.c.src' ] THIS_DIR = os.path.dirname(__file__) API_FILES = [os.path.join(THIS_DIR, '..', 'src', a) for a in API_FILES] |