iris-pex-embedded-python 2.1.0__tar.gz → 2.1.1__tar.gz
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.
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/PKG-INFO +1 -1
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/setup.py +1 -1
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_business_host.py +3 -1
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/iris_pex_embedded_python.egg-info/PKG-INFO +1 -1
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/LICENSE +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/README.md +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/pyproject.toml +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/setup.cfg +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/iris/__init__.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/__init__.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_business_operation.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_business_process.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_business_service.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_common.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_director.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_inbound_adapter.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_message.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_outbound_adapter.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_pickle_message.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_private_session_duplex.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_private_session_process.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_utils.py +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/iris_pex_embedded_python.egg-info/SOURCES.txt +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/iris_pex_embedded_python.egg-info/dependency_links.txt +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/iris_pex_embedded_python.egg-info/requires.txt +0 -0
- {iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/iris_pex_embedded_python.egg-info/top_level.txt +0 -0
|
@@ -26,7 +26,7 @@ def main():
|
|
|
26
26
|
description='iris_pex_embedded_python',
|
|
27
27
|
long_description=long_description,
|
|
28
28
|
long_description_content_type='text/markdown',
|
|
29
|
-
version='2.1.
|
|
29
|
+
version='2.1.1',
|
|
30
30
|
author='grongier',
|
|
31
31
|
author_email='guillaume.rongier@intersystems.com',
|
|
32
32
|
keywords='iris_pex_embedded_python',
|
{iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_business_host.py
RENAMED
|
@@ -156,7 +156,9 @@ class _BusinessHost(_Common):
|
|
|
156
156
|
elif (message is not None and self._is_iris_object_instance(message)):
|
|
157
157
|
return message
|
|
158
158
|
else:
|
|
159
|
-
|
|
159
|
+
# todo : decorator takes care of all the parameters, so this should never happen
|
|
160
|
+
return message
|
|
161
|
+
#raise TypeError("The message must be an instance of a class that is a subclass of Message or IRISObject %Persistent class.")
|
|
160
162
|
|
|
161
163
|
def _serialize_message(self,message):
|
|
162
164
|
""" Converts a python dataclass message into an iris grongier.pex.message.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/iris/__init__.py
RENAMED
|
File without changes
|
{iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_common.py
RENAMED
|
File without changes
|
{iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_director.py
RENAMED
|
File without changes
|
|
File without changes
|
{iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_message.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{iris_pex_embedded_python-2.1.0 → iris_pex_embedded_python-2.1.1}/src/grongier/pex/_utils.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|