Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen RevisionVorhergehende ÜberarbeitungNächste Überarbeitung | Vorhergehende Überarbeitung | ||
| en:debugging_of_scripts_with_visual_studio_2017 [2019/06/16 12:47] – [Description of the Config parameters] hlinke | en:debugging_of_scripts_with_visual_studio_2017 [2019/06/16 12:56] (aktuell) – [Description of the Config parameters] hlinke | ||
|---|---|---|---|
| Zeile 74: | Zeile 74: | ||
| Imports the wingdbstub.py that is needed by WING Python IDE to start the debugging. You can remove this when you do not use WING Python IDE. | Imports the wingdbstub.py that is needed by WING Python IDE to start the debugging. You can remove this when you do not use WING Python IDE. | ||
| + | |||
| + | === debugpostcmd === | ||
| + | Defines Python commands that need to be executed after the end of the Python script. | ||
| + | Here you can add commands that are needed by the debugger to stop the debugging. | ||
| + | |||
| + | Example: | ||
| + | |||
| + | " | ||
| + | |||
| + | === debugusereload === | ||
| + | As explained above you need to restart VEGAS after any change in the Python script. | ||
| + | |||
| + | To avoid this restart and reduce the turn arround times VEGASPython can use the " | ||
| + | |||
| + | Reloading a module is not a clean concept and can create some issue. Please read the chapter reload() in the Python documentation before using this fundtion: | ||
| + | [[https:// | ||
| + | |||
| + | example: | ||
| + | |||
| + | " | ||
| + | |||
| + | |||
| + | |||
| + | |||
| + | " | ||
| + | |||
| + | |||