PySimultan 0.2.7__py3-none-any.whl → 0.2.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {PySimultan-0.2.7.dist-info → PySimultan-0.2.8.dist-info}/METADATA +1 -1
- {PySimultan-0.2.7.dist-info → PySimultan-0.2.8.dist-info}/RECORD +6 -6
- PySimultan2/object_mapper.py +7 -0
- {PySimultan-0.2.7.dist-info → PySimultan-0.2.8.dist-info}/LICENSE.txt +0 -0
- {PySimultan-0.2.7.dist-info → PySimultan-0.2.8.dist-info}/WHEEL +0 -0
- {PySimultan-0.2.7.dist-info → PySimultan-0.2.8.dist-info}/top_level.txt +0 -0
@@ -4,7 +4,7 @@ PySimultan2/data_model.py,sha256=2Qq_JyUxtDgsIt3p5hIXIqNy7eAtvn-6Of_Wzb9AWoE,280
|
|
4
4
|
PySimultan2/default_types.py,sha256=1HJ6IZt3Lm3Hhq3A9dDmvIO46Fk9bGqDng6yTtYKmO4,22585
|
5
5
|
PySimultan2/files.py,sha256=q6A5KTqU1nCwh0W0Qf3Se7qcvhGiDAWza2v-X-rt6E4,12473
|
6
6
|
PySimultan2/multi_values.py,sha256=ZFXlTLuZo32x7_7diYAp2XEjp5uwgHLgNOzN7v74-5I,13650
|
7
|
-
PySimultan2/object_mapper.py,sha256=
|
7
|
+
PySimultan2/object_mapper.py,sha256=Dsr05gdZxcECr14TVzswHNuE4HQhxyhjQwNWlgDrzwc,9010
|
8
8
|
PySimultan2/simultan_object.py,sha256=3uTNbw_acTj_4_ZVE8n5D0zLxuSnSH58tDfgrxOBs-Y,15206
|
9
9
|
PySimultan2/taxonomy_maps.py,sha256=qgKM0CdwwgLCFj-ivzY38VaCpE_eCPKyCiBaTBazpBk,7509
|
10
10
|
PySimultan2/utils.py,sha256=eCClnI1UpAOACiCMu5BmoVZ8oeR_FEWUugzsbaw41Yk,62038
|
@@ -75,8 +75,8 @@ PySimultan2/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
75
75
|
PySimultan2/resources/assimp.dll,sha256=HwfDwXqoPDTFRyoQpA3qmgZoUdFtziJkV5fNtktEZEU,6081536
|
76
76
|
PySimultan2/resources/defaultsettings.xml,sha256=s6Tk1tubLz5UYqXZWpD42EDHzedemRY1nEneoIVcUfg,392
|
77
77
|
PySimultan2/resources/setup.bat,sha256=fjvvYfVM6TalS-QTSiKAbAId5nTsk8kGGo06ba-wWaY,32
|
78
|
-
PySimultan-0.2.
|
79
|
-
PySimultan-0.2.
|
80
|
-
PySimultan-0.2.
|
81
|
-
PySimultan-0.2.
|
82
|
-
PySimultan-0.2.
|
78
|
+
PySimultan-0.2.8.dist-info/LICENSE.txt,sha256=htoPAa6uRjSKPD1GUZXcHOzN55956HdppkuNoEsqR0E,1023
|
79
|
+
PySimultan-0.2.8.dist-info/METADATA,sha256=H6eIn24kJ1mZfXijbASwLQO0SG2dNPz4iXo2yjXxdjM,1990
|
80
|
+
PySimultan-0.2.8.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
81
|
+
PySimultan-0.2.8.dist-info/top_level.txt,sha256=pbE6SbdKIEEK4vaDNmmdRTj0vesrjgRXGow8QWMTXvk,12
|
82
|
+
PySimultan-0.2.8.dist-info/RECORD,,
|
PySimultan2/object_mapper.py
CHANGED
@@ -199,6 +199,13 @@ class PythonMapper(object):
|
|
199
199
|
for cls in self.mapped_classes.values():
|
200
200
|
cls._cls_instances = WeakSet()
|
201
201
|
|
202
|
+
def copy(self):
|
203
|
+
new_mapper = PythonMapper()
|
204
|
+
new_mapper.registered_classes = self.registered_classes
|
205
|
+
new_mapper.taxonomy_maps = self.taxonomy_maps
|
206
|
+
new_mapper.registered_geometry_classes = self.registered_geometry_classes
|
207
|
+
return new_mapper
|
208
|
+
|
202
209
|
|
203
210
|
if config.default_mapper is None:
|
204
211
|
config.default_mapper = PythonMapper()
|
File without changes
|
File without changes
|
File without changes
|