iris-pex-embedded-python 3.1.5b2__py3-none-any.whl → 3.1.5b3__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.
- iop/_business_operation.py +1 -1
- iop/_business_service.py +1 -1
- iop/_director.py +4 -4
- iop/_private_session_duplex.py +2 -1
- {iris_pex_embedded_python-3.1.5b2.dist-info → iris_pex_embedded_python-3.1.5b3.dist-info}/METADATA +1 -1
- {iris_pex_embedded_python-3.1.5b2.dist-info → iris_pex_embedded_python-3.1.5b3.dist-info}/RECORD +10 -10
- {iris_pex_embedded_python-3.1.5b2.dist-info → iris_pex_embedded_python-3.1.5b3.dist-info}/WHEEL +1 -1
- {iris_pex_embedded_python-3.1.5b2.dist-info → iris_pex_embedded_python-3.1.5b3.dist-info}/LICENSE +0 -0
- {iris_pex_embedded_python-3.1.5b2.dist-info → iris_pex_embedded_python-3.1.5b3.dist-info}/entry_points.txt +0 -0
- {iris_pex_embedded_python-3.1.5b2.dist-info → iris_pex_embedded_python-3.1.5b3.dist-info}/top_level.txt +0 -0
iop/_business_operation.py
CHANGED
|
@@ -36,7 +36,7 @@ class _BusinessOperation(_BusinessHost):
|
|
|
36
36
|
""" For internal use only. """
|
|
37
37
|
self.iris_handle = handle_current
|
|
38
38
|
if type(handle_partner).__module__.find('iris') == 0:
|
|
39
|
-
if handle_partner._IsA("Grongier.PEX.OutboundAdapter"):
|
|
39
|
+
if handle_partner._IsA("Grongier.PEX.OutboundAdapter") or handle_partner._IsA("IOP.OutboundAdapter"):
|
|
40
40
|
module = importlib.import_module(handle_partner.GetModule())
|
|
41
41
|
handle_partner = getattr(module, handle_partner.GetClassname())()
|
|
42
42
|
self.Adapter = self.adapter = handle_partner
|
iop/_business_service.py
CHANGED
|
@@ -30,7 +30,7 @@ class _BusinessService(_BusinessHost):
|
|
|
30
30
|
""" For internal use only. """
|
|
31
31
|
self.iris_handle = handle_current
|
|
32
32
|
if type(handle_partner).__module__.find('iris') == 0:
|
|
33
|
-
if handle_partner._IsA("Grongier.PEX.InboundAdapter"):
|
|
33
|
+
if handle_partner._IsA("Grongier.PEX.InboundAdapter") or handle_partner._IsA("IOP.InboundAdapter"):
|
|
34
34
|
module = importlib.import_module(handle_partner.GetModule())
|
|
35
35
|
handle_partner = getattr(module, handle_partner.GetClassname())()
|
|
36
36
|
self.Adapter = self.adapter = handle_partner
|
iop/_director.py
CHANGED
|
@@ -40,7 +40,7 @@ class _Director():
|
|
|
40
40
|
Returns:
|
|
41
41
|
an object that contains an instance of IRISBusinessService
|
|
42
42
|
"""
|
|
43
|
-
iris_object = iris.cls("
|
|
43
|
+
iris_object = iris.cls("IOP.Director").dispatchCreateBusinessService(target)
|
|
44
44
|
return iris_object
|
|
45
45
|
|
|
46
46
|
@staticmethod
|
|
@@ -54,7 +54,7 @@ class _Director():
|
|
|
54
54
|
Returns:
|
|
55
55
|
an object that contains an instance of IRISBusinessService
|
|
56
56
|
"""
|
|
57
|
-
iris_object = iris.cls("
|
|
57
|
+
iris_object = iris.cls("IOP.Director").dispatchCreateBusinessService(target)
|
|
58
58
|
return iris_object.GetClass()
|
|
59
59
|
|
|
60
60
|
### List of function to manage the production
|
|
@@ -112,12 +112,12 @@ class _Director():
|
|
|
112
112
|
### list production
|
|
113
113
|
@staticmethod
|
|
114
114
|
def list_productions():
|
|
115
|
-
return iris.cls('
|
|
115
|
+
return iris.cls('IOP.Director').dispatchListProductions()
|
|
116
116
|
|
|
117
117
|
### status production
|
|
118
118
|
@staticmethod
|
|
119
119
|
def status_production():
|
|
120
|
-
dikt = iris.cls('
|
|
120
|
+
dikt = iris.cls('IOP.Director').StatusProduction()
|
|
121
121
|
if dikt['Production'] is None or dikt['Production'] == '':
|
|
122
122
|
dikt['Production'] = _Director.get_default_production()
|
|
123
123
|
return dikt
|
iop/_private_session_duplex.py
CHANGED
|
@@ -31,7 +31,8 @@ class _PrivateSessionDuplex(_BusinessHost):
|
|
|
31
31
|
""" For internal use only. """
|
|
32
32
|
self.iris_handle = handle_current
|
|
33
33
|
if type(handle_partner).__module__.find('iris') == 0:
|
|
34
|
-
if handle_partner._IsA("Grongier.PEX.InboundAdapter") or handle_partner._IsA("Grongier.PEX.OutboundAdapter")
|
|
34
|
+
if (handle_partner._IsA("Grongier.PEX.InboundAdapter") or handle_partner._IsA("Grongier.PEX.OutboundAdapter")
|
|
35
|
+
or handle_partner._IsA("IOP.InboundAdapter") or handle_partner._IsA("IOP.OutboundAdapter")):
|
|
35
36
|
module = importlib.import_module(handle_partner.GetModule())
|
|
36
37
|
handle_partner = getattr(module, handle_partner.GetClassname())()
|
|
37
38
|
self.Adapter = self.adapter = handle_partner
|
{iris_pex_embedded_python-3.1.5b2.dist-info → iris_pex_embedded_python-3.1.5b3.dist-info}/RECORD
RENAMED
|
@@ -93,17 +93,17 @@ intersystems_iris/pex/__init__.py,sha256=l_I1dpnluWawbFrGMDC0GLHpuHwjbpd-nho8otF
|
|
|
93
93
|
iop/__init__.py,sha256=zHFF0Znipx1fwHYUEBZjNOYoZH1ro7z4IgYDU32kdn0,1067
|
|
94
94
|
iop/__main__.py,sha256=pQzVtkDhAeI6dpNRC632dVk2SGZZIEDwDufdgZe8VWs,98
|
|
95
95
|
iop/_business_host.py,sha256=_U7f2Fy-7_qzBz4OQTAieVvEhBaT1Z0E77QoYPU0i-U,28244
|
|
96
|
-
iop/_business_operation.py,sha256=
|
|
96
|
+
iop/_business_operation.py,sha256=BX4CT6OW_i2jLZRTWQIDJsQSRxFWpKUf0pAXruy3Wsg,3546
|
|
97
97
|
iop/_business_process.py,sha256=F4NIQcwQ5u8yiAPpaN14OAXxbKJsRAGm5S4lrbgA3oI,13296
|
|
98
|
-
iop/_business_service.py,sha256=
|
|
98
|
+
iop/_business_service.py,sha256=8dYTr4z3RE0WupT7_DeDvYjyhVqZtdDj0jA52ZSKCQ0,3771
|
|
99
99
|
iop/_cli.py,sha256=yg4wv1FkhgjmoZuTMUr61Ff21PegJDH_cpZeHcF8hQE,6207
|
|
100
100
|
iop/_common.py,sha256=uKJdfCSPOjVQOg8GVuUj4ywfAn_2sPB3C82HbWw_5bI,15384
|
|
101
|
-
iop/_director.py,sha256=
|
|
101
|
+
iop/_director.py,sha256=TFwhvLaoM1wnMvs-P7ItNs2ZuBWNginIsZMrDOFnOPw,10980
|
|
102
102
|
iop/_inbound_adapter.py,sha256=PS5ToqhrYcXq9ZdLbCBqAfVp8kCeRACm_KF66pwBO9U,1652
|
|
103
103
|
iop/_message.py,sha256=BmwBXriykU66bwAgRbdkMpjfJRVWoNRX2eDc9TXfXzA,325
|
|
104
104
|
iop/_outbound_adapter.py,sha256=YTAhLrRf9chEAd53mV6KKbpaHOKNOKJHoGgj5wakRR0,726
|
|
105
105
|
iop/_pickle_message.py,sha256=noKfc2VkXufV3fqjKvNHN_oANQ1YN9ffCaSV0XSTAIE,331
|
|
106
|
-
iop/_private_session_duplex.py,sha256=
|
|
106
|
+
iop/_private_session_duplex.py,sha256=36OwAGlasbPtfwq2KgMFcr3a33RsNSqohJx243XcDWI,5153
|
|
107
107
|
iop/_private_session_process.py,sha256=pGjWFOQhWpQxUVpTtvNKTPvDxgzjfw0VC4Aqj3KUq8w,1704
|
|
108
108
|
iop/_utils.py,sha256=b1vFnAXbcNV4uN9zojIeSeLgr0CuSt9bBgguZra0ve8,18105
|
|
109
109
|
iop/cls/IOP/BusinessOperation.cls,sha256=lrymqZ8wHl5kJjXwdjbQVs5sScV__yIWGh-oGbiB_X0,914
|
|
@@ -129,9 +129,9 @@ iop/cls/IOP/Service/WSGI.cls,sha256=VLNCXEwmHW9dBnE51uGE1nvGX6T4HjhqePT3LVhsjAE,
|
|
|
129
129
|
iop/wsgi/handlers.py,sha256=NrFLo_YbAh-x_PlWhAiWkQnUUN2Ss9HoEm63dDWCBpQ,2947
|
|
130
130
|
irisnative/_IRISNative.py,sha256=HQ4nBhc8t8_5OtxdMG-kx1aa-T1znf2I8obZOPLOPzg,665
|
|
131
131
|
irisnative/__init__.py,sha256=6YmvBLQSURsCPKaNg7LK-xpo4ipDjrlhKuwdfdNb3Kg,341
|
|
132
|
-
iris_pex_embedded_python-3.1.
|
|
133
|
-
iris_pex_embedded_python-3.1.
|
|
134
|
-
iris_pex_embedded_python-3.1.
|
|
135
|
-
iris_pex_embedded_python-3.1.
|
|
136
|
-
iris_pex_embedded_python-3.1.
|
|
137
|
-
iris_pex_embedded_python-3.1.
|
|
132
|
+
iris_pex_embedded_python-3.1.5b3.dist-info/LICENSE,sha256=rZSiBFId_sfbJ6RL0GjjPX-InNLkNS9ou7eQsikciI8,1089
|
|
133
|
+
iris_pex_embedded_python-3.1.5b3.dist-info/METADATA,sha256=u0Elo84WHAFGg2_Ut7hfvcwPBs6EAhL8cI_FfHB3Z3o,50207
|
|
134
|
+
iris_pex_embedded_python-3.1.5b3.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
135
|
+
iris_pex_embedded_python-3.1.5b3.dist-info/entry_points.txt,sha256=pj-i4LSDyiSP6xpHlVjMCbg1Pik7dC3_sdGY3Yp9Vhk,38
|
|
136
|
+
iris_pex_embedded_python-3.1.5b3.dist-info/top_level.txt,sha256=VWDlX4YF4qFVRGrG3-Gs0kgREol02i8gIpsHNbhfFPw,42
|
|
137
|
+
iris_pex_embedded_python-3.1.5b3.dist-info/RECORD,,
|
{iris_pex_embedded_python-3.1.5b2.dist-info → iris_pex_embedded_python-3.1.5b3.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|