Jerry James

Results 25 comments of Jerry James

Regarding the left shift tests, for each type T, this table shows the result of `Stdint.T.shift_left (Stdint.T.of_int 70368744177664) 16)` on the left, and the result of `Stdint.T.of_int (70368744177664 lsl 16))`...

Regarding the failing "logical shifts must not sign-extend" test, 0 is one of the values that can be picked for the right shift. The minimum integer for a signed type...

Right, and in my case the email said the old version of pynac was 0.4.2, but it was actually 0.7.27. As for the change to the wrong project, I was...

Okay ... but there is no mapping for the pypi.org pynac project, just the one I maintain. If one should have been created automatically, it didn't work. Clicking on that...

I cannot speak to Debian packaging, but I am looking at adding a tlx package to Fedora (to be used by freetdi/gala, which is used by freetdi/tdlib, which sagemath wants)....

Changing the test to provide a seed sounds like the right way to go. Thank you both for the quick responses.

I should have mentioned that https://github.com/Macaulay2/M2/pull/2536 does in fact lead to a good build. Thank you, @jkyang92 .

I haven't seen this happen for quite awhile, but it did on a recent build of networkx 3.2.1 with python 3.12.1. It does not happen on every build. Running the...

Correction: this crash only happens on aarch64. Failures on other architectures turned out to have different causes. Also, by default the Fedora builders operate in an ASCII environment; i.e., LC_ALL=C....

To find the size needed, we need the maximum value of `i % (size_t)rc`, which is `rc - 1`, the maximum value of `i`, which is `num_chunks - 1`, and...