summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/unittest/test/testmock/support.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/Lib/unittest/test/testmock/support.py b/Lib/unittest/test/testmock/support.py
index 205431a..c7ad20b 100644
--- a/Lib/unittest/test/testmock/support.py
+++ b/Lib/unittest/test/testmock/support.py
@@ -12,10 +12,3 @@ class SomeClass(object):
class X(object):
pass
-
-
-def examine_warnings(func):
- def wrapper():
- with catch_warnings(record=True) as ws:
- func(ws)
- return wrapper