Changeset 23100


Ignore:
Timestamp:
08/16/18 17:13:13 (7 years ago)
Author:
kruegern
Message:

BUG: fixed a bug/crash in src/m/qmu/helpers.OrderedStruct related to deepcopy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/qmu/helpers.py

    r23095 r23100  
    11import numpy as np
    22from collections import OrderedDict
     3from copy import deepcopy
    34
    45class struct(object):
     
    179180                for a,b in zip(self._k,self._v):
    180181                        yield(a,b)
     182
     183        def __copy__(self):
     184                # shallow copy, hard copies of trivial attributes,
     185                # references to structures like lists/OrderedDicts
     186                # unless redefined as an entirely different structure
     187                newInstance = type(self)()
     188                for k,v in self.items():
     189                        exec('newInstance.%s = v')%(k)
     190                return newInstance
     191
     192        def __deepcopy__(self,memo=None):
     193                # hard copy of all attributes
     194                # same thing but call deepcopy recursively
     195                # technically not how it should be done,
     196                # (see https://docs.python.org/2/library/copy.html#copy.deepcopy )
     197                # but will generally work in this case
     198                newInstance = type(self)()
     199                for k,v in self.items():
     200                        exec('newInstance.%s = deepcopy(v)')%(k)
     201                return newInstance
    181202
    182203        def iterkeys(self):
Note: See TracChangeset for help on using the changeset viewer.