huajun07 / codesketcher

Visualise your code in action!
https://main.d1fr5et3wgts3j.amplifyapp.com/
MIT License
0 stars 0 forks source link

fix: CPython generated variables are filtered out #109

Closed limanjun99 closed 1 year ago

limanjun99 commented 1 year ago

This PR filters out variables generated by CPython, such as during list comprehension.

a = [_ for _ in range(1)]

The above code used to cause the executor to return a .0 range iterator variable, but now it no longer does so.