Skip to content

Commit 1db0cca

Browse files
committed
More cross-references
1 parent 6cd09d0 commit 1db0cca

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

blosc2/core.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,7 @@ def pack_array2(arr, chunksize=None, **kwargs):
422422
See also
423423
--------
424424
:func:`~blosc2.unpack_array2`
425+
:func:`~blosc2.save_array`
425426
"""
426427
# If not passed, set a sensible typesize
427428
if 'cparams' in kwargs:
@@ -488,6 +489,7 @@ def unpack_array2(cframe):
488489
See also
489490
--------
490491
:func:`~blosc2.pack_array2`
492+
:func:`~blosc2.save_array`
491493
"""
492494
import numpy
493495
schunk = blosc2.schunk_from_cframe(cframe, False)
@@ -537,6 +539,7 @@ def save_array(arr, urlpath, chunksize=None, **kwargs):
537539
See also
538540
--------
539541
:func:`~blosc2.load_array`
542+
:func:`~blosc2.pack_array2`
540543
:func:`~blosc2.open`
541544
"""
542545
return pack_array2(arr, chunksize=chunksize, urlpath=urlpath, **kwargs)
@@ -576,6 +579,7 @@ def load_array(urlpath):
576579
See also
577580
--------
578581
:func:`~blosc2.save_array`
582+
:func:`~blosc2.pack_array2`
579583
"""
580584
import numpy
581585
schunk = blosc2.open(urlpath)

0 commit comments

Comments
 (0)