Rafael Fourquet
Rafael Fourquet
A PkgEval run for a [PR](https://github.com/JuliaLang/julia/pull/35078) which changes the generated numbers for `randn!` indicates that the tests of this package might fail in Julia 1.5 (and on Julia current master)....
An option to change that would very useful. For example: ``` $ mkdir test; ln -s test test2; cd test2/; touch file; tmsu tag file atag; tmsu tags file atag...
A PkgEval run for a Julia [pull request](https://github.com/JuliaLang/julia/pull/29240) which changes the generated numbers for `rand(a:b)` indicates that the tests of this package might fail in Julia 1.5 (and on Julia...
`primes` seems to be our only function currently accepting only `Int`.
Cf. discussion at https://github.com/JuliaMath/Primes.jl/pull/78#discussion_r352474088. This allows for example `factor(Int[], 123)`. Should we remove `factor(Vector, 123)`, deprecated it? Or should we just remove the generic methods (`factor(::Type{AbstractArray})`, `factor(::Type{AbstractDict})`, etc.) and keep...
A PkgEval run for a Julia [pull request](https://github.com/JuliaLang/julia/pull/29240) which changes the generated numbers for `rand(a:b)` indicates that the tests of this package might fail in Julia 1.5 (and on Julia...
A PkgEval run for a [PR](https://github.com/JuliaLang/julia/pull/35078) which changes the generated numbers for `randn!` indicates that the tests of this package might fail in Julia 1.5 (and on Julia current master)....
This is what `readbytes!` docstring from `Base` says, but `readbytes!` on a HTTP streams returns the total number of bytes. I realize that this method is probably internal as it...
``` julia> BitIntegers.@define_integers 8 I8 U8 julia> I8(1) Error showing value of type I8: ERROR: Trunc: output bitsize must be < input bitsize [...] ```
This is on julia 1.8.4, PC.jl 2.1.2. A MWE can be: * `$ mkdir /tmp/jl_project; cd /tmp/jl_project` * `$ julia --project=.` * `]generate XYZ`; `]dev ./XYZ` * `$ mkdir image;...