Re: [jupyter] clear_output and display widgets (from ipywidgets) connection

2019-07-11 Thread Jason Grout
That's great to hear! If you're at scipy right now, I'd love to touch base with you in person about this effort. Thanks, Jason On Thu, Jul 11, 2019 at 7:38 AM Ilya Kazakevich < ilya.kazakev...@jetbrains.com> wrote: > Jason, William, thank you. > I now understand how this redirection works. It

Re: [jupyter] clear_output and display widgets (from ipywidgets) connection

2019-07-11 Thread Ilya Kazakevich
Jason, William, thank you. I now understand how this redirection works. It would be nice to document it somewhere in https://jupyter-notebook.readthedocs.io/en/stable/comms.html Yes, we are implementing ipywidgets for PyCharm:) Ilya. -- You received this message because you are subscribed to

Re: [jupyter] clear_output and display widgets (from ipywidgets) connection

2019-07-11 Thread Jason Grout
On Wed, Jul 10, 2019 at 8:01 PM William Stein wrote: > On Wed, Jul 10, 2019 at 5:51 PM Ilya Kazakevich > wrote: > > > > Thank you! > > I was trying to understand how is it implemented technically, how it > works under the hood > > I'll also add that the answer to > Then, how does jupyter "under

Re: [jupyter] clear_output and display widgets (from ipywidgets) connection

2019-07-10 Thread William Stein
On Wed, Jul 10, 2019 at 5:51 PM Ilya Kazakevich wrote: > > Thank you! > I was trying to understand how is it implemented technically, how it works > under the hood If that GitHub issue I pointed to isn't sufficiently clear, please reopen it and add additional questions or make a new one. Jason

Re: [jupyter] clear_output and display widgets (from ipywidgets) connection

2019-07-10 Thread Ilya Kazakevich
Thank you! I was trying to understand how is it implemented technically, how it works under the hood -- You received this message because you are subscribed to the Google Groups "Project Jupyter" group. To unsubscribe from this group and stop receiving emails from it, send an email to jupyter+

Re: [jupyter] clear_output and display widgets (from ipywidgets) connection

2019-07-10 Thread William Stein
On Wed, Jul 10, 2019 at 5:00 PM Ilya Kazakevich wrote: > > Hello, > > According to manual, ``clear_output`` event should clear whole cell output. > > But with the following code > > from ipywidgets import widgets > from IPython.display import clear_output > out = widgets.Output(layout={'border': '

[jupyter] clear_output and display widgets (from ipywidgets) connection

2019-07-10 Thread Ilya Kazakevich
Hello, According to manual, ``clear_output`` event should clear whole cell output. But with the following code from ipywidgets import widgets from IPython.display import clear_output out = widgets.Output(layout={'border': '1px solid black'}) out.append_display_data(10) display(out) display("20")