Problem debugging python with pyc modules

Hello,

I there any debugger settings to be done to load pyc modules without problems? If a package includes a init.py it works fine, but if it is a __init__pyc it says it cannot find … Idem it works fine with a .py module but not with a .pyc module

So you’ll be unable to debug a .pyc file, though Komodo’s debugger should simply ignore that file - is that not occurring? What are you seeing?

I found that I need to decompile the imported pyc file into py to make it work with the debugger. Otherwise, if it stays in pyc format komodo choke on it.