sandboxing/running python code line by line

后端 未结 7 1322
遥遥无期
遥遥无期 2020-12-14 03:50

I\'d love to be able to do something like these two are doing:

Inventing on principle @18:20 , Live ClojureScript Game Editor

If you don\'t wanna check the v

7条回答
  •  感情败类
    2020-12-14 04:18

    It sounds like you need bdb, the python debugger library. It's built-in, and the docs are here: http://docs.python.org/library/bdb.html

    It doesn't have all of the functionality you seem to want, but it's a sensible place to start implementing it.

提交回复
热议问题