Changeset 25316


Ignore:
Timestamp:
07/30/20 13:13:24 (5 years ago)
Author:
jdquinn
Message:

CHG: Using copy rather than deepcopy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/m/solve/WriteData.py

    r25313 r25316  
    1 from copy import deepcopy
     1from copy import copy
    22from struct import error, pack
    33
     
    4444    # model fields.
    4545    #
    46     # NOTE: This is a temporary fix to get builds green in Jenkins: without it,
    47     #       there still exists a bug wherein model fields are being modified
    48     #       (see https://ross.ics.uci.edu/jenkins/view/All/job/Debian_Linux-Python/1036).
    49     #
    50     data = deepcopy(data)
     46    data = copy(data)
    5147
    5248    #Scale data if necessary
Note: See TracChangeset for help on using the changeset viewer.