Skip to content
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

Update_Display_Data is not handled by the interactive window or notebook editor #2071

Closed
rchiodo opened this issue Mar 30, 2020 · 1 comment
Assignees

Comments

@rchiodo
Copy link
Contributor

rchiodo commented Mar 30, 2020

Enter code like so:

# %%
import itertools
import time

from IPython.display import Markdown


# %%

dh = display(display_id=True)


# %%
display(Markdown('# Display Update Fun'))
dh.display(Markdown(''))


# %%
for i in itertools.cycle(range(0x1F600, 0x1F650)):
    dh.update(Markdown(f'## &#{i}; {hex(i)}'))
    time.sleep(0.5)

This should cause the second and 3rd cell to update as the timer fires. What actually happens is nothing.

This is a requirement for some of the IPyWidgets to work

@rchiodo rchiodo self-assigned this Mar 30, 2020
@IanMatthewHuff
Copy link
Member

Validated.

@lock lock bot locked as resolved and limited conversation to collaborators May 20, 2020
@microsoft microsoft unlocked this conversation Nov 13, 2020
@DonJayamanne DonJayamanne transferred this issue from microsoft/vscode-python Nov 13, 2020
@github-actions github-actions bot locked as resolved and limited conversation to collaborators May 8, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants