-
Notifications
You must be signed in to change notification settings - Fork 109
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
Sheets not refreshing #11
Comments
I've noticed this too; the issue seems to be that any class method doesn't work. Here's some that don't work, given a list X.pop(0)
X.append([1,2,3])
m = X.max() Whereas these do work: X[0] = 0
X = X + [1,2,3]
m = X[0] EDIT: No wonder |
@bradrn thanks for looking into this, I will try and fix it this weekend. I am not particularly keen on bug fixes in this codebase because it's basically a prototype and fundamentally hacky, but I'm sure this used to work... |
I know I'm getting a bit off-topic here, but I'm just wondering: if this application is a prototype only, then what do you have planned for the finished application? |
In implementation terms it will be a fork of CPython, with probably a Qt frontend. This will be more performant and more stable/robust. Design wise, I am not 100% sure at the moment, people are suggesting several good ideas which I will try and include. The main features that are missing at the moment are the ability to query things like the stack trace and memory usage. These need to be exposed to metacode to allow for the creation of useful visualisations. |
Your bubble sort demo works for me, but in my first several attempts to investigate some of my own code the variables didn't update in the Sheet as expected.
I have this code:
In which I'm trying to monitor
addtl
andrv
in a Sheet; however, they never update past their initial values.Here's a screenshare to demonstrate: https://www.youtube.com/watch?v=-4Tmee4Qqzk
The text was updated successfully, but these errors were encountered: