diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-01-17 12:01:48 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-01-17 12:01:48 +0000 |
commit | 76761ff119acab82da016358d13b8e4bb4c6c34d (patch) | |
tree | 95cfda8e8caf15e1d56a0a700c6ae953edfced2c /numpy/distutils/misc_util.py | |
parent | e92c9c4400da1024053666b62e2e20bd312a937c (diff) | |
download | numpy-76761ff119acab82da016358d13b8e4bb4c6c34d.tar.gz |
Fixed dotblas for zero-size arrays.
Diffstat (limited to 'numpy/distutils/misc_util.py')
-rw-r--r-- | numpy/distutils/misc_util.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/numpy/distutils/misc_util.py b/numpy/distutils/misc_util.py index ec3d482f6..b0119c4ab 100644 --- a/numpy/distutils/misc_util.py +++ b/numpy/distutils/misc_util.py @@ -6,6 +6,16 @@ import copy import types import glob +__all__ = ['Configuration', 'get_numpy_include_dirs', 'default_config_dict', + 'dict_append', 'appendpath', 'generate_config_py', + 'generate_svn_version_py', 'get_cmd', 'allpath', + 'terminal_has_colors', 'red_text', 'green_text', 'yellow_text', + 'blue_text', 'cyan_text', 'cyg2win32', 'all_strings', + 'has_f_sources', 'has_cxx_sources', 'filter_sources', + 'get_dependencies', 'is_local_src_dir', 'get_ext_source_files', + 'get_script_files', 'get_lib_source_files', 'get_data_files', + 'dot_join', 'get_frame'] + def allpath(name): "Convert a /-separated pathname to one using the OS's path separator." splitted = name.split('/') |