Ram Rachum
Ram Rachum
Has this been implemented yet?
Another bug is that `site-packages` isn't put on `sys.path`; I'm guessing it's because of the `site` module not being run.
You can completely avoid any impact if you do something like this (pseudocode): ``` def get_tracer_function(): if user_given_condition is None: def tracer_function(): # Your existing code else: def tracer_function(): #...
Do you think it's possible to answer my particular need without this functionality? On Wed, Apr 5, 2017 at 7:01 PM, Andreas Klöckner wrote: > True. But then we'd have...
Care to give a bit more details so I will have an idea on how to do this?
Also: Looking at the bdb and pudb code now, I'm thinking that maybe I can override `Debugger.dispatch_call`, and put code that calls `self.interaction` if my condition is met. Do you...
Is it even possible to subclass `pudb.debugger.Debugger` and get PuDB to use it?
Thanks! I'll try.
My teammate just had a need for this feature now.