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.
- grongier/pex/_business_host.py +9 -1
- intersystems_iris/dbapi/_DBAPI.py +517 -243
- intersystems_iris/dbapi/_IRISStream.py +2 -0
- intersystems_iris/dbapi/_Parameter.py +62 -31
- intersystems_iris/dbapi/_ParameterCollection.py +9 -1
- intersystems_iris/dbapi/_ResultSetRow.py +3 -1
- intersystems_iris/dbapi/preparser/_PreParser.py +47 -38
- {iris_pex_embedded_python-2.3.17.dist-info → iris_pex_embedded_python-2.3.18.dist-info}/METADATA +1 -1
- {iris_pex_embedded_python-2.3.17.dist-info → iris_pex_embedded_python-2.3.18.dist-info}/RECORD +13 -13
- {iris_pex_embedded_python-2.3.17.dist-info → iris_pex_embedded_python-2.3.18.dist-info}/LICENSE +0 -0
- {iris_pex_embedded_python-2.3.17.dist-info → iris_pex_embedded_python-2.3.18.dist-info}/WHEEL +0 -0
- {iris_pex_embedded_python-2.3.17.dist-info → iris_pex_embedded_python-2.3.18.dist-info}/entry_points.txt +0 -0
- {iris_pex_embedded_python-2.3.17.dist-info → iris_pex_embedded_python-2.3.18.dist-info}/top_level.txt +0 -0
grongier/pex/_business_host.py
CHANGED
|
@@ -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.
|
|
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
|
|