Skip to content
Snippets Groups Projects
Commit 137e12a7 authored by Andreas Dedner's avatar Andreas Dedner
Browse files

add changelog entry

parent c62baf84
No related branches found
No related tags found
1 merge request!1198[Python] add a Pickler class to the generator
Pipeline #55812 passed
Pipeline: Dune Nightly Test

#55813

    ......@@ -13,6 +13,13 @@ In order to build the DUNE core modules you need at least the following software
    - Optional: pkg-config to find other optional dependencies
    - Optional: Python >= 3.7 for Python bindings
    - Python: Add a dump/load functions to dune.common.pickle which add support
    for storing and recreating the JIT generated modules required for the
    pickling of dune objects to work. In addition a class for writing time
    series of pickled data is provided.
    - Python: Add a new argument class to the generator to make add pickling support.
    The approach is similar to adding extra constructors or methods.
    ## Changelog
    - Add concepts directory `dune/common/concepts/` and some fundamental concept definitions using
    ......
    ......@@ -77,7 +77,7 @@ class SeriesPickler:
    assert self.objects is not None, "if used to dump data the 'objects' to dump need to be provided in the ctor"
    dumpFileName = self._dumpFileName(self.count)
    if not type(data) is dict:
    raise TypeError("data passed to 'dump' should be a dictonary")
    raise TypeError("data passed to 'dump' should be a dictionary")
    data["dumpFileName"] = dumpFileName
    self.data[self.count] = data
    with open(self.seriesFileName,"w") as f:
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment