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
Currently, due to the limitation in Python that only code in files can have its source inspected, we cannot inspect code that is defined in snippets. This is seen in debuggers, but also in views defined in a snippet.
Bildschirmaufnahme.2024-11-28.um.11.31.47.mov
We should rectify this. One way to deal with it would be to take a route similar to Pharo DoIts. Much like they are stored in a temporary selector, we can put the code in temporary files and feed those into the bridge instead. This can be done on the Python server or the client side, with varying tradeoffs.
Cheers
The text was updated successfully, but these errors were encountered:
Currently, due to the limitation in Python that only code in files can have its source inspected, we cannot inspect code that is defined in snippets. This is seen in debuggers, but also in views defined in a snippet.
Bildschirmaufnahme.2024-11-28.um.11.31.47.mov
We should rectify this. One way to deal with it would be to take a route similar to Pharo
DoIt
s. Much like they are stored in a temporary selector, we can put the code in temporary files and feed those into the bridge instead. This can be done on the Python server or the client side, with varying tradeoffs.Cheers
The text was updated successfully, but these errors were encountered: