-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
julia.exe isinteractive() always true in startup.jl. 1.8.0-rc1 - Windows 10 - prebuild portable (bug) #45630
Comments
|
Yeah I know that :) there is a problem, but I misdiagnosed it, sorry! The breaking change is:
I've edited the title the reflect the root cause. Here is a a repro, both shell session on the same host. Exemple with $ pwd
/c/julia/bin/julia-1.7.3/bin
$ cat ~/.julia/config/startup.jl
println("startup.jl: ", VERSION,' ',isinteractive())
$ ./julia.exe -q
startup.jl: 1.7.3 false
julia>
$ ./julia.exe -q -i
startup.jl: 1.7.3 true
julia>
$ ./julia.exe --startup-file=no -q -e "println(VERSION,' ',isinteractive()); exit()"
1.7.3 false
$ ./julia.exe --startup-file=no -q -i -e "println(VERSION,' ',isinteractive()); exit()"
1.7.3 true Exemple with $ pwd
/c/julia/bin/julia-1.8.0-rc1/bin
$ cat ~/.julia/config/startup.jl
println("startup.jl: ", VERSION,' ',isinteractive())
$ ./julia.exe -q
startup.jl: 1.8.0-rc1 true
julia>
$ ./julia.exe -q -i
startup.jl: 1.8.0-rc1 true
julia>
$ ./julia.exe --startup-file=no -q -e "println(VERSION,' ',isinteractive()); exit()"
1.8.0-rc1 false
$ ./julia.exe --startup-file=no -q -i -e "println(VERSION,' ',isinteractive()); exit()"
1.8.0-rc1 true |
Ah, I see what you mean. I think that's more consistent, to be honest. With |
TL;DR
(edited for clarification, also, I consider using Hum... it remains a breaking change and should imho be documented as such... but I also see what you mean 😄 I had to think quite a bit about it, much more than I wanted to 😆... This is the kind of "silly" question that's more subtle that it seems... The specs of The issue depends on how you interpret the absence of The relevant case is when there is no
So
The current doc of So, yeah, it can be argued that the behavior of 1.8 is more coherent. But I think the behavior of <1.8 is more useful: it provides a way to pass an argument to all codes that
my small use caseI use startup.jl to setup my environment both for quick command line testing and for interactive session. So I load Revise/OhMyREPL etc. from startup.jl but only if isinteractive() is true. Currently my scripts (non -i) on 1.8.0-rc1 do load all the "interactive use related" code and thus start much more slowly. E.g. I use aliases like |
Anyone know what caused the change? |
As I've shown above, at least There are, in general, a few distinct behaviors:
The only case where
Or neither, as is the case for e.g. Jupyter notebooks, which are interactive but are neither a REPL nor requiring The docs for
I haven't checked in depth, but I think this was an intentional change as a bugfix, directly intended to expose So right now I'd suggest loading your interactive packages conditionally based on whether or not |
Yes, it was intentional in #42507. Possible usage in if isinteractive()
using OhMyREPL
using Revise
# ...
end |
@Seelengrab yes I agree with your reply, that was what I tried to say in my previous post, I've not be clear enough. So I'll close this. My original point was that it's technically a breaking change (user land code takes a difference conditional branch in the new version, and the previous behavior was not defined as UB). So maybe it should be added in NEWS.
That was my second point. In the current situation |
The binary julia.exe as found in the prebuilt portable release 1.8.0-rc1 ignore the command line option
-i
In
startup.jl
and the REPLisinteractive()
is always true, whether or not-i
is passed.The text was updated successfully, but these errors were encountered: