I'm using winpdb 1.1.2 to debug my sqlalchemy/wxPython app. whenever the current instruction moves inside of an sqlalchemy module, winpdb reports that it's able to continue executing but unable to show me where I am until control passes back out of sqlalchemy. Apparently this is because winpdb is trying to look inside of sqlalchemy's python eggs to follow along, rather than in actual text files.
An example of the messages I'm seeing in winpdb's code window: Failed to load source file 'build\bdist.win32\egg\sqlalchemy\orm \session.py' from debuggee. You may continue to debug, but you will not see source lines from this file. Inspecting the relevant directories on my system, I see that build \bdist.win32 is actually empty. Meanwhile build\lib\sqlalchemy\orm holds the file session.py that winpdb needed. So, I need to change something in order to make winpdb substitute build \lib\sqlalchemy wherever it was trying to look in build\bdist.win32. I don't see any way of changing this behavior in winpdb itself. Can I do something on the sqlalchemy side to straighten this out? Is there something I can change in a source file? Thanks! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sqlalchemy?hl=en -~----------~----~----~----~------~----~------~--~---
