diff options
author | Raymond Hettinger <python@rcn.com> | 2010-12-21 19:24:26 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-12-21 19:24:26 (GMT) |
commit | 8ebe27f30012ad1858edf41a0ee0be16ff70127b (patch) | |
tree | 62a28157f0bf2500e03870168a60dce71d3217a5 /Lib/unittest/case.py | |
parent | f259076790dac0b0c596a4545f05967d9cc76f65 (diff) | |
download | cpython-8ebe27f30012ad1858edf41a0ee0be16ff70127b.zip cpython-8ebe27f30012ad1858edf41a0ee0be16ff70127b.tar.gz cpython-8ebe27f30012ad1858edf41a0ee0be16ff70127b.tar.bz2 |
Deprecate assertDictContainsSubset()
Diffstat (limited to 'Lib/unittest/case.py')
-rw-r--r-- | Lib/unittest/case.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/unittest/case.py b/Lib/unittest/case.py index b02d475..15c7eee 100644 --- a/Lib/unittest/case.py +++ b/Lib/unittest/case.py @@ -934,6 +934,8 @@ class TestCase(object): def assertDictContainsSubset(self, subset, dictionary, msg=None): """Checks whether dictionary is a superset of subset.""" + warnings.warn('assertDictContainsSubset is deprecated', + DeprecationWarning) missing = [] mismatched = [] for key, value in subset.items(): |