How to use the pudb.runcall function in pudb

To help you get started, we’ve selected a few pudb examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github inducer / pudb / manual-tests / test-encoding.py View on Github external
def f(encoding=None):
	print 'ENCODING:', encoding

from pudb import runcall
runcall(f)
github catboost / catboost / contrib / python / pandas / pandas / util / testing.py View on Github external
def pudebug(f, *args, **kwargs):
    import pudb
    return pudb.runcall(f, *args, **kwargs)
github ryfeus / lambda-packs / Pandas_numpy / source / pandas / util / testing.py View on Github external
def pudebug(f, *args, **kwargs):
    import pudb
    return pudb.runcall(f, *args, **kwargs)
github inducer / pudb / manual-tests / test-api.py View on Github external
def f():
    fail

from pudb import runcall
runcall(f)