davidbrochart / akernel

Asynchronous Python Jupyter kernel
MIT License
72 stars 5 forks source link

Allow redefinition of reactive variable #15

Closed davidbrochart closed 3 years ago

davidbrochart commented 3 years ago

Currently, with e.g. a reactive variable y defined as:

y = x + 1

One needs to delete it before redefining it, e.g.:

del y  # currently needed
y = x + 2

It should be automatically deleted when redefined.

davidbrochart commented 3 years ago

With #19 redefinition of a react variable is now supported.