Almenon / Almenon/AREPL-vscode

get rid of annoying flash when dumping

未关闭
#80 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看
bug low priority
主要语言
TypeScript
星标
301
派生
46
PR 合并指标
30 天内没有已合并 PR

描述

Can be replicated with the dumping example in landing page:

```python
from arepldump import dump

def milesToKilometers(miles):
kilometers = miles*1.60934
dump() # dumps all the vars in your function

# or dump when function is called for a second time
dump(None,1)

milesToKilometers(2*2)
milesToKilometers(3*3)

for char in ['a','b','c']:
dump(char,2) # dump a var at a specific iteration

a=1
dump(a) # dump specific vars at any point in your program
a=2
```

I might need to turn up the batching in the html rendering.

贡献指南

打开贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。