diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-05-12 03:45:59 +0000 |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-05-12 03:45:59 +0000 |
commit | ac861b5a172a389f7d062fee6d88ded17e458b2e (patch) | |
tree | 8c449ab581aea2b5fb513068d31fd42928d86413 /Lib/test/test_py3kwarn.py | |
parent | 43e5ef49b12ccba2c43ea003316a3ff23677fe0f (diff) | |
download | cpython-git-ac861b5a172a389f7d062fee6d88ded17e458b2e.tar.gz |
Deprecate the sv module as per PEP 4.
Diffstat (limited to 'Lib/test/test_py3kwarn.py')
-rw-r--r-- | Lib/test/test_py3kwarn.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_py3kwarn.py b/Lib/test/test_py3kwarn.py index ef4d0b9d92..3fa16db6c1 100644 --- a/Lib/test/test_py3kwarn.py +++ b/Lib/test/test_py3kwarn.py @@ -132,7 +132,8 @@ class TestStdlibRemovals(unittest.TestCase): 'Bastion', 'compiler', 'dircache', 'fpformat', 'ihooks', 'mhlib') inclusive_platforms = {'irix':('pure',)} - optional_modules = ('bsddb185', 'Canvas', 'dl', 'linuxaudiodev', 'imageop') + optional_modules = ('bsddb185', 'Canvas', 'dl', 'linuxaudiodev', 'imageop', + 'sv') def check_removal(self, module_name, optional=False): """Make sure the specified module, when imported, raises a |