Stackless Python development using Python Tools for Visual Studio

Are there Python Tools for Visual Studio Beta that includes CPython support that allows you to develop in Stackless Python?

If so, can you expand your answers by including any steps necessary to install the Stackless Python environment besides installing PTVS on an existing VS2010 installation, please?

+5
source share
1 answer

Of course, you can develop for Stackless, but there is currently no specialized Stackless support. This means that you will find experience editing code, and the REPL window is working fine. But profiling and debugging that rely on sys.settrace will not work for tasklets.

If you install Stackless via MSI, PTVS will pick up the installation just like any regular CPython installation. If you installed it through some other mechanism, you need to go to Tools-> Options-> Python Tools-> Interpreter Options and configure your own interpreter using the Add Interpreter button.

, PTVS, . , , , . PTVS visualstudio_py_debugger.py, , Stackless , .

+5

All Articles