Pythonizer
Pythonizer

Reputation: 1194

Debug the code even in case of error PyDev

I'm using the PyDev module for Eclipse debugger and I'm not able to debug my code to find out what's the reason of compilation failure! How to debug a code even if there is an error? for example this kind of error

a = 41
b = 'str'
print a + b 

Edit: The question is not about the code

Upvotes: 0

Views: 52

Answers (2)

user3535644
user3535644

Reputation: 149

if you in interactive console try

preferences->pydev->interactive console and flag "connect console to a debug session"

Upvotes: 1

Vijay Kumar
Vijay Kumar

Reputation: 345

you can not conncat int and str:

see this doc pydev debugger

Upvotes: 0

Related Questions