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/lib/npyio.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/lib/npyio.py')
-rw-r--r-- | numpy/lib/npyio.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py index ec89397a0..ac6d46a71 100644 --- a/numpy/lib/npyio.py +++ b/numpy/lib/npyio.py @@ -1515,6 +1515,7 @@ def genfromtxt(fname, dtype=float, comments='#', delimiter=None, # Get the first valid lines after the first skiprows ones .. if skiprows: + # 2011-03-06 Cannot remove is keyword. warnings.warn( "The use of `skiprows` is deprecated, it will be removed in " "numpy 2.0.\nPlease use `skip_header` instead.", @@ -1650,6 +1651,7 @@ def genfromtxt(fname, dtype=float, comments='#', delimiter=None, # Process the deprecated `missing` if missing != asbytes(''): + # 2011-03-06 Cannot remove, is keyword. warnings.warn( "The use of `missing` is deprecated, it will be removed in " "Numpy 2.0.\nPlease use `missing_values` instead.", |