We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8df2e7 commit a60c530Copy full SHA for a60c530
pysrc/juliacall/banner.jl
@@ -4,9 +4,9 @@ function __PythonCall_banner(io::IO = stdout)
4
banner_opt = begin
5
opts = Base.JLOptions()
6
b = opts.banner
7
- auto = b == -1
8
- b == 0 || (auto && !interactiveinput) ? :no :
9
- b == 1 || (auto && interactiveinput) ? :yes :
+ b == -1 ? :yes :
+ b == 0 ? :no :
+ b == 1 ? :yes :
10
:short # b == 2
11
end
12
0 commit comments