From 0ef70245ff43f911d9951d514f32aee8adffda20 Mon Sep 17 00:00:00 2001 From: "Vgr E. Barry" Date: Sat, 28 Jan 2017 00:40:28 -0500 Subject: [PATCH] Don't show locals of proxy stubs --- src/proxy.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/proxy.py b/src/proxy.py index de23d68..dcadc79 100644 --- a/src/proxy.py +++ b/src/proxy.py @@ -32,6 +32,7 @@ SIGS = {} def stub(f): def inner(*args, **kwargs): + _ignore_locals_ = True if f.__name__ not in IMPLS: raise NotImplementedError(("This proxy stub has not yet been " "implemented in another module"))