Conversation
…s unavailable Operations that require the native C++ extension (RPC calls, transport send, event subscriptions) now raise clear errors instead of silently returning empty/fake responses. Updates README with installation verification steps. Fixes #17
2 tasks
vtz
added a commit
that referenced
this pull request
Apr 22, 2026
Remove unused `MessageType` import from test_client.py and unused `asyncio` import from test_rpc.py. Combine nested `with` statements per SIM117. Apply ruff format to rpc.py and transport.py. Made-with: Cursor
vtz
added a commit
that referenced
this pull request
Apr 22, 2026
Remove unused `MessageType` import from test_client.py and unused `asyncio` import from test_rpc.py. Combine nested `with` statements per SIM117. Apply ruff format to rpc.py and transport.py.
vtz
added a commit
that referenced
this pull request
Apr 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
RpcClient.call(),Transport.send(),EventSubscriber.subscribe(),EventPublisher.notify(),EventPublisher.set_field()) now raise clear errors (RpcError,TransportError,RuntimeError) instead of silently returning empty/fake responses or dropping messages.RpcClient.call()now wraps native C++ exceptions inRpcErrorand raises on non-zero result codes, instead of swallowing errors withexcept Exception: pass.Test plan
pytest tests/unit/— 271 tests passpytest tests/— all 300 tests pass (unit + integration + property)RpcError/TransportError/RuntimeErrorwhen C++ extension is unavailabletest_call_raises_without_native,test_call_propagates_cpp_exception,test_call_async_raises_without_native,test_send_raises_without_native,test_subscribe_raises_without_native,test_notify_raises_without_native,test_set_field_raises_without_nativeimport opensomeipsucceeds,client.call(...)raisesRpcErrorwith helpful messageFixes #17
Made with Cursor