freebsd-ports/databases/py-caterva/files/patch-caterva-constructors.py
Po-Chuan Hsieh f65555c64c
databases/py-caterva: Fix build with newer caterva
- Bump PORTREVISION for package change
2022-08-31 19:40:55 +08:00

13 lines
732 B
Python

--- caterva/constructors.py.orig 2022-01-28 12:38:26 UTC
+++ caterva/constructors.py
@@ -34,8 +34,8 @@ def empty(shape, itemsize, **kwargs):
urlpath: str or None
The name of the file to store data. If `None`, data is stored in-memory.
(Default `None`)
- sequential: bool or None
- Whether the data is stored sequentially or sparsely (one chunk per file).
+ contiguous: bool or None
+ Whether the data is stored contiguously or sparsely (one chunk per file).
If `None`, data is stored sparsely.
memframe: bool
If True, the array is backed by a frame in-memory. Else, by a super-chunk.