Dennis Lambe Jr.

Results 8 comments of Dennis Lambe Jr.

This work-around worked for me: ```git config --global add.interactive.useBuiltin false``` Obviously that's not ideal long-term since it disables the new faster `git add -p` implementation.

> sounds, err, maybe related.. but I can't actually find what 'rewritten in C' refers to, `add-patch.c` seems to have been there years. The configuration flag `add.interactive.useBuiltin` got a new...

Yocto appears to be moving to ZStandard for compressing WIC images, fwiw.

I think this change is a superset of #529 and contains all of those fixes.

Sorry, this PR is still buggy. I'm going to build out the unit tests a little bit to test `recv()` more thoroughly and push an updated version in a little...

This PR should be good to go now. It simplifies the logic in `recv()` by leveraging the fact that `_recv_internal()` already takes care of determining whether an rx timeout has...

The only way I can think of to guarantee both 1. this function terminates regardless of bus or CPU speed, and 2. that it will return messages that have been...

Something like this (just a sketch, not ready to call this a complete implementation yet) ```diff diff --git a/can/bus.py b/can/bus.py index af517e9d..55d8abac 100644 --- a/can/bus.py +++ b/can/bus.py @@ -4,6 +4,7...