You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So it would appear that BitStream._add_ is expecting its right-hand operand to be a BitStream (and have a _pos attribute), but the API is supposed to allow any Bits on the right-hand side.
This is causing a regression in one of Core Lightning's pyln-proto unit tests, whereas there was no failure when using Bitstring 4.1.4.
The text was updated successfully, but these errors were encountered:
Using version 4.2.1…
This is okay:
But this fails:
And so does this:
But this is okay:
So it would appear that
BitStream._add_
is expecting its right-hand operand to be aBitStream
(and have a_pos
attribute), but the API is supposed to allow anyBits
on the right-hand side.This is causing a regression in one of Core Lightning's
pyln-proto
unit tests, whereas there was no failure when using Bitstring 4.1.4.The text was updated successfully, but these errors were encountered: