Duet3D Logo Duet3D
    • Tags
    • Documentation
    • Order
    • Register
    • Login
    1. Home
    2. doniervask
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 0
    • Controversial 0
    • Groups 0

    doniervask

    @doniervask

    0
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    doniervask Unfollow Follow

    Latest posts made by doniervask

    • RE: Plugin questions (python script) and journal debug mode issue

      Python has a debugger , which is available as a module called pdb . It supports setting conditional breakpoints , stepping through the source code one line at a time, stack inspection, and more.

      import pdb
      msg = "this is a test"
      pdb.set_trace()
      print(msg)
      

      Insert pdb.set_trace() anywhere and it will function as a breakpoint . When you execute the script by python test.py, you will in the python debug mode.

      posted in Plugins for DWC and DSF
      doniervaskundefined
      doniervask