Pavel Kirienko
Pavel Kirienko
Related: https://github.com/OpenCyphal/specification/issues/52
I just discovered that the problem is, apparently, related to the `PATH` configuration. Adding the DLL directory to PATH explicitly before loading the module fixes the problem: set PATH=C:\Python39-x64\lib\site-packages\libpcap\_platform\_windows\x64\wpcap;%PATH% python...
Functional workaround: ```python import os import sys import pathlib import importlib.util if sys.platform.startswith('win'): libpcap_dir = pathlib.Path(importlib.util.find_spec('libpcap').origin).parent dll_path = libpcap_dir / '_platform' / '_windows' / ('x64' if sys.maxsize.bit_length() > 32 else...
I also ran into the same issue as OP, as my data contains NaNs that are not easily reducible to nulls. The optional syntax extension proposed by @phil-zxx in the...
There are no other error cases so having an error code will add no new information to the user.
I take that back. There are two error cases: bad alignment and the arena being too small. Does this justify the existence of a separate argument?
Can I name the error code argument after you?
Hey @thirtytwobits what do you make of this? https://github.com/OpenCyphal/libcanard/security/code-scanning?query=is%3Aopen+pr%3A214 I am yet to enable AUTOSAR scanning but so far it does not look too promising. There is no built-in method...
Thank you, I will take it from here. A few edits are needed but they are related to the subject matter of the text.
The proper thing to do is to separate your testing code into dedicated bits and merge that into master.