legend-pydataobj 1.11.7__tar.gz → 1.11.10__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/PKG-INFO +1 -1
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/legend_pydataobj.egg-info/PKG-INFO +1 -1
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/_version.py +2 -2
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/write/composite.py +36 -13
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/core.py +7 -5
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/lh5/test_lh5_write.py +53 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/LICENSE +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/README.md +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/pyproject.toml +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/setup.cfg +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/legend_pydataobj.egg-info/SOURCES.txt +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/legend_pydataobj.egg-info/dependency_links.txt +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/legend_pydataobj.egg-info/entry_points.txt +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/legend_pydataobj.egg-info/not-zip-safe +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/legend_pydataobj.egg-info/requires.txt +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/legend_pydataobj.egg-info/top_level.txt +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/__init__.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/cli.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/compression/__init__.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/compression/base.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/compression/generic.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/compression/radware.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/compression/utils.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/compression/varlen.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lgdo_utils.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/__init__.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/__init__.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/__init__.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/array.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/composite.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/encoded.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/ndarray.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/scalar.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/utils.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/vector_of_vectors.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/write/__init__.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/write/array.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/write/scalar.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/write/vector_of_vectors.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/concat.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/datatype.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/exceptions.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/iterator.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/store.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/tools.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/utils.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5_store.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/logging.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/__init__.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/array.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/arrayofequalsizedarrays.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/encoded.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/fixedsizearray.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/histogram.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/lgdo.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/scalar.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/struct.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/table.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/vectorofvectors.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/vovutils.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/waveformtable.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/units.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/utils.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/compression/conftest.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/compression/sigcompress/LDQTA_r117_20200110T105115Z_cal_geds_raw-0.dat +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/compression/sigcompress/special-wf-clipped.dat +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/compression/test_compression.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/compression/test_radware_sigcompress.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/compression/test_str2wfcodec.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/compression/test_uleb128_zigzag_diff.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/conftest.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/lh5/conftest.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/lh5/test_concat.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/lh5/test_core.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/lh5/test_exceptions.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/lh5/test_lh5_datatype.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/lh5/test_lh5_iterator.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/lh5/test_lh5_store.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/lh5/test_lh5_tools.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/lh5/test_lh5_utils.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/test_cli.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/test_lgdo_utils.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_array.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_arrayofequalsizedarrays.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_encoded.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_fixedsizearray.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_histogram.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_representations.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_scalar.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_struct.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_table.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_table_eval.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_vectorofvectors.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_vovutils.py +0 -0
- {legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_waveformtable.py +0 -0
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/write/composite.py
RENAMED
@@ -186,19 +186,31 @@ def _h5_write_struct(
|
|
186
186
|
write_start=0,
|
187
187
|
**h5py_kwargs,
|
188
188
|
):
|
189
|
+
# this works for structs and derived (tables)
|
189
190
|
assert isinstance(obj, types.Struct)
|
190
191
|
|
191
192
|
# In order to append a column, we need to update the
|
192
|
-
# `table{old_fields}` value in `group.attrs['datatype"]` to include
|
193
|
-
# the new fields.
|
194
|
-
#
|
195
|
-
#
|
193
|
+
# `struct/table{old_fields}` value in `group.attrs['datatype"]` to include
|
194
|
+
# the new fields. One way to do this is to override `obj.attrs["datatype"]`
|
195
|
+
# to include old and new fields. Then we can write the fields to the
|
196
|
+
# struct/table as normal.
|
196
197
|
if wo_mode == "ac":
|
198
|
+
if name not in group:
|
199
|
+
msg = "Cannot append column to non-existing struct on disk"
|
200
|
+
raise LH5EncodeError(msg, lh5_file, group, name)
|
201
|
+
|
197
202
|
old_group = utils.get_h5_group(name, group)
|
203
|
+
if "datatype" not in old_group.attrs:
|
204
|
+
msg = "Cannot append column to an existing non-LGDO object on disk"
|
205
|
+
raise LH5EncodeError(msg, lh5_file, group, name)
|
206
|
+
|
198
207
|
lgdotype = datatype.datatype(old_group.attrs["datatype"])
|
199
208
|
fields = datatype.get_struct_fields(old_group.attrs["datatype"])
|
200
|
-
if not
|
201
|
-
msg =
|
209
|
+
if lgdotype is not type(obj):
|
210
|
+
msg = (
|
211
|
+
"Trying to append columns to an object of different "
|
212
|
+
f"type {lgdotype.__name__}!={type(obj)}"
|
213
|
+
)
|
202
214
|
raise LH5EncodeError(msg, lh5_file, group, name)
|
203
215
|
|
204
216
|
# If the mode is `append_column`, make sure we aren't appending
|
@@ -211,8 +223,12 @@ def _h5_write_struct(
|
|
211
223
|
"column(s) to a table with the same field(s)"
|
212
224
|
)
|
213
225
|
raise LH5EncodeError(msg, lh5_file, group, name)
|
226
|
+
|
214
227
|
# It doesn't matter what key we access, as all fields in the old table have the same size
|
215
|
-
if
|
228
|
+
if (
|
229
|
+
isinstance(obj, types.Table)
|
230
|
+
and old_group[next(iter(old_group.keys()))].size != obj.size
|
231
|
+
):
|
216
232
|
msg = (
|
217
233
|
f"Table sizes don't match. Trying to append column of size {obj.size} "
|
218
234
|
f"to a table of size {old_group[next(iter(old_group.keys()))].size}."
|
@@ -222,16 +238,25 @@ def _h5_write_struct(
|
|
222
238
|
# Now we can append the obj.keys() to the old fields, and then update obj.attrs.
|
223
239
|
fields.extend(list(obj.keys()))
|
224
240
|
obj.attrs.pop("datatype")
|
225
|
-
|
241
|
+
|
242
|
+
obj.attrs["datatype"] = obj.datatype_name() + "{" + ",".join(fields) + "}"
|
243
|
+
|
244
|
+
# propagating wo_mode="ac" to nested LGDOs does not make any sense
|
245
|
+
wo_mode = "append"
|
246
|
+
|
247
|
+
# overwrite attributes of the existing struct
|
248
|
+
attrs_overwrite = True
|
249
|
+
else:
|
250
|
+
attrs_overwrite = wo_mode == "o"
|
226
251
|
|
227
252
|
group = utils.get_h5_group(
|
228
253
|
name,
|
229
254
|
group,
|
230
255
|
grp_attrs=obj.attrs,
|
231
|
-
overwrite=
|
256
|
+
overwrite=attrs_overwrite,
|
232
257
|
)
|
233
258
|
# If the mode is overwrite, then we need to peek into the file's
|
234
|
-
# table's existing fields.
|
259
|
+
# table's existing fields. If we are writing a new table to the
|
235
260
|
# group that does not contain an old field, we should delete that
|
236
261
|
# old field from the file
|
237
262
|
if wo_mode == "o":
|
@@ -260,11 +285,9 @@ def _h5_write_struct(
|
|
260
285
|
else:
|
261
286
|
obj_fld = obj[field]
|
262
287
|
|
263
|
-
# Convert keys to string for dataset names
|
264
|
-
f = str(field)
|
265
288
|
_h5_write_lgdo(
|
266
289
|
obj_fld,
|
267
|
-
|
290
|
+
str(field),
|
268
291
|
lh5_file,
|
269
292
|
group=group,
|
270
293
|
start_row=start_row,
|
@@ -273,11 +273,13 @@ def write(
|
|
273
273
|
end of array is the same as ``append``.
|
274
274
|
- ``overwrite_file`` or ``of``: delete file if present prior to
|
275
275
|
writing to it. `write_start` should be 0 (its ignored).
|
276
|
-
- ``append_column`` or ``ac``: append columns from an
|
277
|
-
:class:`~.lgdo.
|
278
|
-
:class:`~.lgdo.table.Table`
|
279
|
-
|
280
|
-
|
276
|
+
- ``append_column`` or ``ac``: append fields/columns from an
|
277
|
+
:class:`~.lgdo.struct.Struct` `obj` (and derived types such as
|
278
|
+
:class:`~.lgdo.table.Table`) only if there is an existing
|
279
|
+
:class:`~.lgdo.struct.Struct` in the `lh5_file` with the same `name`.
|
280
|
+
If there are matching fields, it errors out. If appending to a
|
281
|
+
``Table`` and the size of the new column is different from the size
|
282
|
+
of the existing table, it errors out.
|
281
283
|
write_start
|
282
284
|
row in the output file (if already existing) to start overwriting
|
283
285
|
from.
|
@@ -537,3 +537,56 @@ def test_write_histogram_variable(caplog, tmptestdir):
|
|
537
537
|
assert h3.attrs["testattr"] == "test"
|
538
538
|
assert h3["weights"].attrs["weightattr"] == "testweight"
|
539
539
|
assert h3.binning[0].attrs["binningattr"] == "testbinning"
|
540
|
+
|
541
|
+
|
542
|
+
def test_write_append_struct(tmptestdir):
|
543
|
+
outfile = f"{tmptestdir}/test-write-append-struct.lh5"
|
544
|
+
st = types.Struct({"arr1": types.Table({"a": types.Array([1, 2, 3])})})
|
545
|
+
lh5.write(st, "struct", outfile, wo_mode="of")
|
546
|
+
st2 = types.Struct({"arr2": types.Table({"a": types.Array([1, 2, 3])})})
|
547
|
+
lh5.write(st2, "struct", outfile, wo_mode="ac")
|
548
|
+
|
549
|
+
result = lh5.read("struct", outfile)
|
550
|
+
assert list(result.keys()) == ["arr1", "arr2"]
|
551
|
+
assert len(result.arr1) == len(st.arr1)
|
552
|
+
assert len(result.arr2) == len(st2.arr2)
|
553
|
+
|
554
|
+
# test error when appending existing field
|
555
|
+
with pytest.raises(lh5.exceptions.LH5EncodeError):
|
556
|
+
lh5.write(
|
557
|
+
types.Struct({"arr2": types.Array([4, 5, 6])}),
|
558
|
+
"struct",
|
559
|
+
outfile,
|
560
|
+
wo_mode="ac",
|
561
|
+
)
|
562
|
+
|
563
|
+
# error if appending to object of different type
|
564
|
+
with pytest.raises(lh5.exceptions.LH5EncodeError):
|
565
|
+
lh5.write(
|
566
|
+
types.Struct({"arr2": types.Array([4, 5, 6])}),
|
567
|
+
"struct",
|
568
|
+
outfile,
|
569
|
+
wo_mode="ac",
|
570
|
+
)
|
571
|
+
|
572
|
+
lh5.write(
|
573
|
+
types.Table({"arr1": types.Array([1, 2, 3])}), "struct", outfile, wo_mode="of"
|
574
|
+
)
|
575
|
+
|
576
|
+
# error if appending to object of different type
|
577
|
+
with pytest.raises(lh5.exceptions.LH5EncodeError):
|
578
|
+
lh5.write(
|
579
|
+
types.Table({"arr2": types.Array([4, 5, 6, 7])}),
|
580
|
+
"struct",
|
581
|
+
outfile,
|
582
|
+
wo_mode="ac",
|
583
|
+
)
|
584
|
+
|
585
|
+
# append to empty struct
|
586
|
+
lh5.write(types.Struct({}), "struct", outfile, wo_mode="of")
|
587
|
+
st2 = types.Struct({"arr2": types.Table({"a": types.Array([1, 2, 3])})})
|
588
|
+
lh5.write(st2, "struct", outfile, wo_mode="ac")
|
589
|
+
|
590
|
+
result = lh5.read("struct", outfile)
|
591
|
+
assert list(result.keys()) == ["arr2"]
|
592
|
+
assert len(result.arr2) == len(st2.arr2)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/legend_pydataobj.egg-info/SOURCES.txt
RENAMED
File without changes
|
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/legend_pydataobj.egg-info/entry_points.txt
RENAMED
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/legend_pydataobj.egg-info/not-zip-safe
RENAMED
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/legend_pydataobj.egg-info/requires.txt
RENAMED
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/legend_pydataobj.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/__init__.py
RENAMED
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/array.py
RENAMED
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/composite.py
RENAMED
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/encoded.py
RENAMED
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/ndarray.py
RENAMED
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/scalar.py
RENAMED
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/read/utils.py
RENAMED
File without changes
|
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/write/__init__.py
RENAMED
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/write/array.py
RENAMED
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/lh5/_serializers/write/scalar.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/src/lgdo/types/arrayofequalsizedarrays.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/compression/test_radware_sigcompress.py
RENAMED
File without changes
|
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/compression/test_uleb128_zigzag_diff.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{legend_pydataobj-1.11.7 → legend_pydataobj-1.11.10}/tests/types/test_arrayofequalsizedarrays.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|