diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-14 06:52:55 +0300 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-05-14 06:52:55 +0300 |
commit | 32e3fdc2d06404c3d5ae637f862a3ce194ea9252 (patch) | |
tree | 7997848444c8c2ca14e9bc3fec04ca88fcfc35e8 /Lib/test/support.py | |
parent | 4e03e9dc8d741514867b0ad1301d1d9e53885895 (diff) | |
parent | 6b60fb9148738de1525bbf5c7ddadc16a474c635 (diff) | |
download | cpython-git-32e3fdc2d06404c3d5ae637f862a3ce194ea9252.tar.gz |
#5723: merge with 3.2.
Diffstat (limited to 'Lib/test/support.py')
-rw-r--r-- | Lib/test/support.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/support.py b/Lib/test/support.py index 4539c70b4c..579f2b7b02 100644 --- a/Lib/test/support.py +++ b/Lib/test/support.py @@ -127,8 +127,8 @@ def import_fresh_module(name, fresh=(), blocked=(), deprecated=False): If deprecated is True, any module or package deprecation messages will be suppressed.""" - # NOTE: test_heapq and test_warnings include extra sanity checks to make - # sure that this utility function is working as expected + # NOTE: test_heapq, test_json and test_warnings include extra sanity checks + # to make sure that this utility function is working as expected with _ignore_deprecated_imports(deprecated): # Keep track of modules saved for later restoration as well # as those which just need a blocking entry removed |