Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

JuliaLang/julia

IanButterworth created a comment on a pull request on JuliaLang/julia
Ah ok. Maybe that should be a repl-specific option like `hint_tab_completes` rather than a global? But setting that is quite ugly because you need a version check barrier ``` if VERSION >= v"1...

View on GitHub

freyaharris starred JuliaLang/julia
IanButterworth opened a pull request on JuliaLang/julia
add Pkg 1.11 news to HISTORY.md
Backport already on https://github.com/JuliaLang/julia/pull/56228
IanButterworth pushed 1 commit to backports-release-1.11 JuliaLang/julia

View on GitHub

jishnub pushed 7 commits to jishnub/muldiag_tri_fix JuliaLang/julia
  • REPL: fix brace detection when ' is used for transpose (#56252) 1c67d0c
  • Add basic infrastructure for binding replacement (#56224) Now that I've had a few months to recover from the slog of... 8bdacc3
  • Specialize `haszero` for `Union{Missing,<:Number}` (#56169) Since `zero(::Union{Missing,T})` calls `zero(T)` interna... 82e0e28
  • Add small tweaks to juliac script and misc fixes to juliac (#56119) This comments out an assert thats currently faul... 6d7e29f
  • Warn about negative size in array construction (#56262) After this, ```julia julia> zeros(-1) ERROR: ArgumentErro... 11ef8eb
  • Revert "Reroute` (Upper/Lower)Triangular * Diagonal` through `__muldiag`" (#56267) Reverts JuliaLang/julia#55984 Th... cba1cc0
  • Fix multiplying a triangular matrix and a Diagonal 786ba2f

View on GitHub

ericphanson created a comment on a pull request on JuliaLang/julia
Currently there's no env var btw, it's a global value in the REPL module

View on GitHub

vtjnash created a review on a pull request on JuliaLang/julia

View on GitHub

vtjnash deleted a branch JuliaLang/julia

jn/require_stdlib-precompile

vtjnash pushed 1 commit to master JuliaLang/julia
  • precompile: add error for using require_stdlib during precompile (#56233) This function could accidentally add a dep... 2188ba4

View on GitHub

IanButterworth opened a pull request on JuliaLang/julia
move time_imports to Base but remain owned by InteractiveUtils
This way all packages can be timed including InteractiveUtils and its deps (Markdown).
IanButterworth opened a pull request on JuliaLang/julia
add indicator to trace_compile stderr recompiles to survive copy-paste from color prompt
I didn't think adding the `# recompile` text to the end in the repl was a good idea as it increases likelihood of text wrapping. And the color should be sufficient for local review, but when peopl...
oscardssmith created a comment on an issue on JuliaLang/julia
This is very funny. I think we're compiling stuff related to running REPL help mode for tab completion eroniously or something weird like that.

View on GitHub

paulmelis opened an issue on JuliaLang/julia
Inconsistent handling of `--trace-compile` argument
With 1.11 (and 1.10 as well): ``` $ julia --help | grep project --project[={<dir>|@.}] Set <dir> as the active project/environment. $ julia --help-hidden | grep trace-compile --trace-compil...
Rothex68 starred JuliaLang/julia
knuesel created a comment on an issue on JuliaLang/julia
``` $ time julia +nightly --startup-file=no -e "using InteractiveUtils; @time @time_imports @trace_compile using REPL" #= 9.5 ms =# precompile(Tuple{typeof(Base.print), Base.TTY, String, String}...

View on GitHub

Keno opened a pull request on JuliaLang/julia
Some usability follow-ups and fixes for the world macro
1. Allow fully qualified module names: `@world(Foo.Bar.baz, 1)` 2. Correct the printing order of the world macro and module qualifier 3. Add pretty printing for Binding(Partition). Example of the...
Keno created a branch on JuliaLang/julia

kf/worldfollowup - The Julia Programming Language

Keno created a comment on a pull request on JuliaLang/julia
I think raising the limit to 1MiB and advertising the env var is good (although I don't like to set env vars to make sure I get the default user experience, but that's a me problem). I still think ...

View on GitHub

jishnub deleted a branch JuliaLang/julia

revert-55984-jishnub/muldiag_dispatch

jishnub closed a pull request on JuliaLang/julia
Revert "Reroute` (Upper/Lower)Triangular * Diagonal` through `__muldiag`"
Reverts JuliaLang/julia#55984 This PR was buggy, but the test failures as seen in https://buildkite.com/julialang/julia-master/builds/41300#0192adab-9d07-4900-8592-2d46aff26905 were not caught i...
vtjnash created a review comment on a pull request on JuliaLang/julia
correct, `io` is now concrete

View on GitHub

IanButterworth created a comment on a pull request on JuliaLang/julia
Could also advertise the env var for people like Keno in the error message? ``` …[printing stopped after displaying $(Base.format_bytes(e.maxbytes)); call `show(stdout, MIME"text/plain"(), ans)` ...

View on GitHub

Keno created a comment on a pull request on JuliaLang/julia
Implicit show

View on GitHub

mbauman opened an issue on JuliaLang/julia
The string `?(` bogs down REPL input to a crawl
This is a funny one. Having the character combination of `?(` anywhere in a REPL prompt — including in a string — makes input devastatingly slow. This is new in Julia v1.11. I'm on macOS 15.0.1 ...
ericphanson created a comment on a pull request on JuliaLang/julia
do you dump it into your REPL by the REPL's implicit `show` calls, or by explicit `print` / `show` / etc?

View on GitHub

KristofferC created a comment on a pull request on JuliaLang/julia
I backported it because asan fails all the time on 1.11. Maybe this will help.

View on GitHub

KristofferC pushed 1 commit to backports-release-1.11 JuliaLang/julia
  • Make ASAN build not be debug, following clangs recommendation (#54094) (cherry picked from commit 6c17db1ba12e8b6922... 0f09b9b

View on GitHub

knuesel created a comment on an issue on JuliaLang/julia
> How much time does it take to compile that method? Is there a better way to estimate this than the above? The >200 ms compilation time reported above seems to account for all the extra delay tha...

View on GitHub

IanButterworth created a comment on a pull request on JuliaLang/julia
I think the goal here is to use a limit that's unequivocally overwhelming, so making that change seems reasonable to me.

View on GitHub

oscardssmith closed an issue on JuliaLang/julia
Possible improvement in error messages for invalid array sizes
```julia julia> zeros(-1) ERROR: ArgumentError: invalid GenericMemory size: too large for system address width Stacktrace: [1] GenericMemory @ ./boot.jl:538 [inlined] [2] Array @ ./b...
Load more