Hello everybody! I used show() to re-show a plot that was closed. In Julia 1.8.3 it doesn't seem to work anymore.
x = plot(rand(10), rand(10))
close the window
show() # out: empty
x # out: 1-element Vector{PyCall.PyObject}:
PyObject <matplotlib.lines.Line2D object at 0x7faecfddfd30>
show(x) # out: PyCall.PyObject[PyObject <matplotlib.lines.Line2D object at 0x7faecfddfd30>]
display(x) # out: equal to x
Note: I had to install PyCall with the ENV["PYTHON"]="" option