Changeset 23100
- Timestamp:
- 08/16/18 17:13:13 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/qmu/helpers.py
r23095 r23100 1 1 import numpy as np 2 2 from collections import OrderedDict 3 from copy import deepcopy 3 4 4 5 class struct(object): … … 179 180 for a,b in zip(self._k,self._v): 180 181 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 181 202 182 203 def iterkeys(self):
Note:
See TracChangeset
for help on using the changeset viewer.