File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -855,11 +855,11 @@ For example, using the JSON codec::
855
855
856
856
Not all codecs support encoding of all object types. The
857
857
:class: `numcodecs.Pickle ` codec is the most flexible, supporting encoding any type
858
- of Python object. However, if you are sharing data with anyone other than yourself then
859
- Pickle is not recommended as it is a potential security risk, because malicious code can
860
- be embedded within pickled data. The JSON and MsgPack codecs support encoding of unicode
861
- strings, lists and dictionaries, with MsgPack usually faster for both encoding and
862
- decoding.
858
+ of Python object. However, if you are sharing data with anyone other than yourself, then
859
+ Pickle is not recommended as it is a potential security risk. This is because malicious
860
+ code can be embedded within pickled data. The JSON and MsgPack codecs do not have any
861
+ security issues and support encoding of unicode strings, lists and dictionaries.
862
+ MsgPack is usually faster for both encoding and decoding.
863
863
864
864
865
865
.. _tutorial_chunks :
Original file line number Diff line number Diff line change 26
26
'asciitree' ,
27
27
'numpy>=1.7' ,
28
28
'fasteners' ,
29
- 'numcodecs>=0.2.0 ' ,
29
+ 'numcodecs>=0.4.1 ' ,
30
30
],
31
31
package_dir = {'' : '.' },
32
32
packages = ['zarr' , 'zarr.tests' ],
You can’t perform that action at this time.
0 commit comments