Questions tagged [winpdb]

Winpdb is a GUI cross-platform Python debugger.

WinPdb is a GUI cross-platform debugger for Python.

From the website:

Winpdb is a platform independent GPL Python debugger with support for multiple threads, namespace modification, embedded debugging, encrypted communication and is up to 20 times faster than pdb.

19 questions
0
votes
1 answer

winpdb is not recognising function inputs?

This is my first post! :D I am trying to learn how to use winpdb to debug some python code and have a problem. Consider the following python function, simple.py: def simple(a,b): c = a + b return c I am in windows and using the…
0
votes
1 answer

Gimp python plugins debugging with Winpdb trouble

I want to debug some script and I followed Omid Raha suggestion from this post Writing gimp plugins in python on windows- how do i debug? where is the output?. The system work so I am able to step into my code but this error happen when the…
Marco
  • 1
0
votes
1 answer

Debugger is not detaching from Winpdb

I am using PythonQT to execute python script (because I need to call c++ methods from python script) My winpdb version is 1.4.6 and machine is CetOS 6.5 Now I want to enable debugging in python script I have added…
Prasanth V J
  • 1,126
  • 14
  • 32
-1
votes
2 answers

winpdb: how Repr works?

I've got a UserDict class with redefined __repr__ and __str__ and I'm debugging some code using it with WinPDB: class UserDict(dict): def __repr__(self): return "this is repr" def __str__(self): return "this is str" variable…
Boris Burkov
  • 13,420
  • 17
  • 74
  • 109
1
2