diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-06-21 16:10:24 -0400 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-06-21 16:10:24 -0400 |
commit | e3b2bc0b0f31482cd112660393245116ae55ecbf (patch) | |
tree | f00cdd12d96cca0a694f46d4bf0ba60dc2cf1ebd /numpy/ma/extras.py | |
parent | 95b2c24820759397695ece5f512e930e7c1712cf (diff) | |
parent | a27f56069fb883c44dd4986d15e751162d85b621 (diff) | |
download | numpy-e3b2bc0b0f31482cd112660393245116ae55ecbf.tar.gz |
Merge pull request #5990 from charris/1.10-deprecated-removal
1.10 deprecated removal
Diffstat (limited to 'numpy/ma/extras.py')
-rw-r--r-- | numpy/ma/extras.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/ma/extras.py b/numpy/ma/extras.py index 3c10af24c..2f8114563 100644 --- a/numpy/ma/extras.py +++ b/numpy/ma/extras.py @@ -1455,6 +1455,7 @@ def corrcoef(x, y=None, rowvar=True, bias=np._NoValue, allow_masked=True, """ msg = 'bias and ddof have no affect and are deprecated' if bias is not np._NoValue or ddof is not np._NoValue: + # 2015-03-15, 1.10 warnings.warn(msg, DeprecationWarning) # Get the data (x, xnotmask, rowvar) = _covhelper(x, y, rowvar, allow_masked) |