3

I have a WPF application.It has a iron python script editor using AvalonEdit. We were able to validate and run the iron python scripts using this application. But we need to integrate an iron python debugger in to this application.

Can anyone suggest better solution for this?

Prasanth V J
  • 993
  • 11
  • 30

1 Answers1

0

You could take a look at pdb and dbd. This are some very useful modules. You could go through the code and integrate it in your application.

BendEg
  • 16,106
  • 13
  • 46
  • 107
  • We have implemented it using visual studio isolated shell – Prasanth V J Nov 05 '15 at 08:17
  • Do you have used PTVS or your complete own solution? If it's your complete own solution, you might share some information with us :) – BendEg Nov 05 '15 at 08:46
  • Instead of embedding the debugger into our application, we have started VS Shell as a different process and attached the python script to VS shell from our application – Prasanth V J Nov 05 '15 at 08:57
  • And the VS shell is extended with your own plugin or PTVS? – BendEg Nov 05 '15 at 09:01
  • In VS 2013 shell, PTVS is integrated into it http://www.hanselman.com/blog/OneOfMicrosoftsBestKeptSecretsPythonToolsForVisualStudioPTVS.aspx – Prasanth V J Nov 05 '15 at 09:31