From faf11c08fb84c9badd01ecdad893f8a6c48f3f22 Mon Sep 17 00:00:00 2001 From: Mahmoud Hashemi Date: Sun, 4 Dec 2016 00:52:18 -0800 Subject: [PATCH] expose docs for wrap_trace object wrapper in debugutils --- boltons/debugutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boltons/debugutils.py b/boltons/debugutils.py index a8605ab..03f3c6c 100644 --- a/boltons/debugutils.py +++ b/boltons/debugutils.py @@ -21,7 +21,7 @@ try: except ImportError: _UNSET = object() -__all__ = ['pdb_on_signal', 'pdb_on_exception'] +__all__ = ['pdb_on_signal', 'pdb_on_exception', 'wrap_trace'] def pdb_on_signal(signalnum=None):