Return a copy of the data
(self)
| 100 | self.version = version |
| 101 | |
| 102 | def get_data(self): |
| 103 | """Return a copy of the data""" |
| 104 | return copy.copy(self.data) |
| 105 | |
| 106 | def get_formatted_data(self): |
| 107 | """Return a formatted copy of the data""" |
no outgoing calls