File tree Expand file tree Collapse file tree 2 files changed +23
-5
lines changed Expand file tree Collapse file tree 2 files changed +23
-5
lines changed Original file line number Diff line number Diff line change @@ -466,9 +466,29 @@ What has been stored::
466
466
Changes
467
467
-------
468
468
469
+ Version 2 clarifications
470
+ ~~~~~~~~~~~~~~~~~~~~~~~~
471
+
472
+ The following changes have been made to the version 2 specification since it was
473
+ initially published to clarify ambiguities and add some missing information.
474
+
475
+ * The specification now describes how bytes fill values should be encoded and
476
+ decoded for arrays with a fixed-length byte string data type (:issue: `165 `,
477
+ :issue: `176 `).
478
+
479
+ * The specification now clarifies that datetime64 and timedelta64 data types are not
480
+ supported in this version (:issue: `85 `).
481
+
482
+ * The specification now clarifies that the '.zattrs' key does not have to be present for
483
+ either arrays or groups, and if absent then custom attributes should be treated as
484
+ empty.
485
+
486
+
469
487
Changes in version 2
470
488
~~~~~~~~~~~~~~~~~~~~
471
489
490
+ The following changes were made between version 1 and version 2 of this specification:
491
+
472
492
* Added support for storing multiple arrays in the same store and organising
473
493
arrays into hierarchies using groups.
474
494
* Array metadata is now stored under the ".zarray" key instead of the "meta"
Original file line number Diff line number Diff line change @@ -1472,7 +1472,9 @@ def _lmdb_decode_key_bytes(key):
1472
1472
1473
1473
1474
1474
class LMDBStore (MutableMapping ):
1475
- """Storage class using LMDB.
1475
+ """Storage class using LMDB. Requires the `lmdb <http://lmdb.readthedocs.io/>`_
1476
+ package to be installed.
1477
+
1476
1478
1477
1479
Parameters
1478
1480
----------
@@ -1484,10 +1486,6 @@ class LMDBStore(MutableMapping):
1484
1486
**kwargs
1485
1487
Keyword arguments passed through to the `lmdb.open` function.
1486
1488
1487
- Notes
1488
- -----
1489
- Requires the `lmdb <http://lmdb.readthedocs.io/>`_ package to be installed.
1490
-
1491
1489
Examples
1492
1490
--------
1493
1491
Store a single array::
You can’t perform that action at this time.
0 commit comments