NovaNekmit
NovaNekmit
# Feature Request Output of `python -c "import pydantic.utils; print(pydantic.utils.version_info())"`: ``` $ python3 -c "import pydantic.utils; print(pydantic.utils.version_info())" pydantic version: 1.4a1 pydantic compiled: False install path: /home/[user]/git/pydantic/pydantic python version: 3.7.5 (default,...
While linting my project I noticed that the following CMake lines add paths to include, that do not actually exist: https://github.com/Lora-net/LoRaMac-node/blob/master/src/system/CMakeLists.txt#L27 https://github.com/Lora-net/LoRaMac-node/blob/master/src/system/CMakeLists.txt#L34 Maybe an older path got forgotten here? https://github.com/Lora-net/LoRaMac-node/blob/master/src/radio/CMakeLists.txt#L65...
It used to work with a previous version, but doesn't work anymore. `None` can still be put inside, but getting it out (without raw) will get stuck ie [here](https://github.com/peter-wangxu/persist-queue/blob/master/persistqueue/sqlqueue.py#L135). Not...
I was compiling my code with `-Wdouble-promotion` and noticed these warnings: ``` [...]/src/peripherals/mpl3115.c: In function 'MPL3115ReadBarometer': [...]/src/peripherals/mpl3115.c:266:51: warning: implicit conversion from 'float' to 'double' to match other operand of binary...
The fix for #1349 (e5076e13be4993aa81c5c5959a2c310e3100c486) calculates the windows without first checking if the processing delay was *longer* the rx window delay. This may causes a negative result to be passed...
Everywhere else `` is used, so this appears to be an oversight.
As far as I could see, the buffer is only copied from, never written to. Marking it as `const` allows sending data from a `const` buffer without an additional memcpy...
Currently the JUnit report only reports the Error message itself, ie ``` ... ``` For comparison, the XUnit report looks like this: ``` ... tests/test_something.c::test_some_func Assertion tests/test_something.c 62 Element 0...