wheeheee
wheeheee
The hash function `Base.hash(x::T, h::UInt)` from InlineStrings.jl works fine when run normally but `@enter hash(x, h)` throws a `TypeError`. ``` julia> x = String3("a") julia> h = UInt(0) julia> @enter...
When I run a simple test using the test runner, it crashes with the error "Dev path `` does not exist". I'm on julia-vscode v1.7.10 on Windows. ``` @testitem "test...
- named exceptions (`DomainError`, `ArgumentError` etc.) - `findmin`, `splice!` etc. - tidy some things up - fixes some type instabilities in periodogram functions?
I'm not certain what the expected behaviour is, so feel free to close if this was intentional. It looked like #8002 should have made `HDF5_jll.jl`@v1.14.3+1 compatible with `OpenMPI_jll.jl`@v5, but I...
Using the latest VSCode Julia extension, `plan_brfft` from FFTW.jl is listed as having 8 methods in the tooltip, but actually at least 4 of them are duplicates (or maybe 6),...
I'm not sure whether this belongs here, on `setup-julia`, `buildpkg`, or if it's not a problem. Basically, running CI with Julia v1.6 on the windows-latest x64 platform is taking a...
Introduced in JuliaLang/julia#33711. Would it make sense for Compat to have this?
The current implementation uses `reverse(x)`, which is a method error for `Number` arguments. Thus `PolynomialRatio(::Number, ::Number)` doesn't work as currently documented. ~This commit also reduces runtime dispatch.~ edit: guess it...
Also adjusts cutoff, uses `LazyString` for errors.
Currently for `filt` each column of an array is treated as a separate signal. This isn't the case for `mt_cross_power_spectra` and `mt_coherence`, and I'm not sure if there's a reason...