summaryrefslogtreecommitdiff
path: root/numpy/ma
diff options
context:
space:
mode:
authorpierregm <pierregm@localhost>2008-03-28 18:17:56 +0000
committerpierregm <pierregm@localhost>2008-03-28 18:17:56 +0000
commit5827ec12fb37380b8fd61f92922ce54c0d9c1cb1 (patch)
tree2976abb8380b485c487a168967ce9d3331b7e9c3 /numpy/ma
parenta0cac20e505b759030058a1aebca3b2a5ebcc158 (diff)
downloadnumpy-5827ec12fb37380b8fd61f92922ce54c0d9c1cb1.tar.gz
added common_fill_value and set_fill_value in __all__
Diffstat (limited to 'numpy/ma')
-rw-r--r--numpy/ma/core.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py
index e591ddde3..799d06646 100644
--- a/numpy/ma/core.py
+++ b/numpy/ma/core.py
@@ -26,8 +26,8 @@ __all__ = ['MAError', 'MaskType', 'MaskedArray',
'arctanh', 'argmax', 'argmin', 'argsort', 'around',
'array', 'asarray','asanyarray',
'bitwise_and', 'bitwise_or', 'bitwise_xor',
- 'ceil', 'choose', 'compress', 'compressed', 'concatenate',
- 'conjugate', 'cos', 'cosh', 'count',
+ 'ceil', 'choose', 'common_fill_value', 'compress', 'compressed',
+ 'concatenate', 'conjugate', 'cos', 'cosh', 'count',
'default_fill_value', 'diagonal', 'divide', 'dump', 'dumps',
'empty', 'empty_like', 'equal', 'exp',
'fabs', 'fmod', 'filled', 'floor', 'floor_divide','fix_invalid',
@@ -50,8 +50,8 @@ __all__ = ['MAError', 'MaskType', 'MaskedArray',
'power', 'product', 'ptp', 'put', 'putmask',
'rank', 'ravel', 'remainder', 'repeat', 'reshape', 'resize',
'right_shift', 'round_',
- 'shape', 'sin', 'sinh', 'size', 'sometrue', 'sort', 'sqrt', 'std',
- 'subtract', 'sum', 'swapaxes',
+ 'set_fill_value', 'shape', 'sin', 'sinh', 'size', 'sometrue', 'sort',
+ 'sqrt', 'std', 'subtract', 'sum', 'swapaxes',
'take', 'tan', 'tanh', 'transpose', 'true_divide',
'var', 'where',
'zeros']