diff options
author | kritisingh1 <kritisingh1.ks@gmail.com> | 2019-08-12 14:13:18 +0530 |
---|---|---|
committer | kritisingh1 <kritisingh1.ks@gmail.com> | 2019-08-19 02:06:29 +0530 |
commit | f9673c329cf1712bb5e28e1d14260da55a1383a9 (patch) | |
tree | acfd04fd3a518cd0fe75bf0319fb3e664feb226b /doc | |
parent | a6729a0e43791069cbc3cf5e80c34c73fa752b4d (diff) | |
download | numpy-f9673c329cf1712bb5e28e1d14260da55a1383a9.tar.gz |
DEP: Deprecate load/dump functions in favour of pickle methods
Diffstat (limited to 'doc')
-rw-r--r-- | doc/release/upcoming_changes/14256.expired.rst | 3 | ||||
-rw-r--r-- | doc/source/reference/routines.ma.rst | 11 |
2 files changed, 3 insertions, 11 deletions
diff --git a/doc/release/upcoming_changes/14256.expired.rst b/doc/release/upcoming_changes/14256.expired.rst new file mode 100644 index 000000000..229514171 --- /dev/null +++ b/doc/release/upcoming_changes/14256.expired.rst @@ -0,0 +1,3 @@ +* ``numeric.loads``, ``numeric.load``, ``np.ma.dump``, + ``np.ma.dumps``, ``np.ma.load``, ``np.ma.loads`` are removed, + use ``pickle`` methods instead
\ No newline at end of file diff --git a/doc/source/reference/routines.ma.rst b/doc/source/reference/routines.ma.rst index 491bb6bff..5b2098c7a 100644 --- a/doc/source/reference/routines.ma.rst +++ b/doc/source/reference/routines.ma.rst @@ -264,17 +264,6 @@ Conversion operations ma.MaskedArray.tobytes -Pickling and unpickling -~~~~~~~~~~~~~~~~~~~~~~~ -.. autosummary:: - :toctree: generated/ - - ma.dump - ma.dumps - ma.load - ma.loads - - Filling a masked array ~~~~~~~~~~~~~~~~~~~~~~ .. autosummary:: |