You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found a pretty obscure bug that I think originates in PyCall. If you run this code:
using PyCall
println(Vector{String}[String["a"]])
Then julia prints the array but the cursor hangs on the next line. Typing Ctrl+c or 'enter' kills the program fine, so it's not a big deal, but it's weird behavior, especially because it doesn't have this behavior without using PyCall or when you run this code:
using PyCall
println([String["a"]])
Or when you print an array, string, int, etc.
This might be a bash issue (I'm using standard bash, for the record) but I doubt it.