iris-pex-embedded-python 2.3.17__py3-none-any.whl → 2.3.18__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.

Potentially problematic release.


This version of iris-pex-embedded-python might be problematic. Click here for more details.

@@ -31,9 +31,13 @@ class _BusinessHost(_Common):
31
31
  :return: The function dispatch_serializer is being returned.
32
32
  """
33
33
  def dispatch_serializer(self,*params, **param2):
34
+ # Handle positional arguments
34
35
  serialized=[]
35
36
  for param in params:
36
37
  serialized.append(self._dispatch_serializer(param))
38
+ # Handle keyword arguments
39
+ for key, value in param2.items():
40
+ param2[key] = self._dispatch_serializer(value)
37
41
  return fonction(self,*serialized, **param2)
38
42
  return dispatch_serializer
39
43
 
@@ -60,9 +64,13 @@ class _BusinessHost(_Common):
60
64
  :return: The function dispatch_deserializer is being returned.
61
65
  """
62
66
  def dispatch_deserializer(self,*params, **param2):
67
+ # Handle positional arguments
63
68
  serialized=[]
64
69
  for param in params:
65
- serialized.append(self._dispatch_deserializer(param))
70
+ serialized.append(self._dispatch_serializer(param))
71
+ # Handle keyword arguments
72
+ for key, value in param2.items():
73
+ param2[key] = self._dispatch_serializer(value)
66
74
  return fonction(self,*serialized, **param2)
67
75
  return dispatch_deserializer
68
76