diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-05-12 21:42:13 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-05-12 21:42:13 (GMT) |
commit | 236819310db3fe6f2fb22d48b780fa6ec253b6c7 (patch) | |
tree | ce5ca9792381d9ced99e8e871324891ddbeb0e28 /Lib/test/test_py3kwarn.py | |
parent | f9b54c24114b15ff920249244fe361aee276c248 (diff) | |
download | cpython-236819310db3fe6f2fb22d48b780fa6ec253b6c7.zip cpython-236819310db3fe6f2fb22d48b780fa6ec253b6c7.tar.gz cpython-236819310db3fe6f2fb22d48b780fa6ec253b6c7.tar.bz2 |
Add warnings to and deprecated all those Mac modules
Diffstat (limited to 'Lib/test/test_py3kwarn.py')
-rw-r--r-- | Lib/test/test_py3kwarn.py | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Lib/test/test_py3kwarn.py b/Lib/test/test_py3kwarn.py index 3fa16db..39086e9 100644 --- a/Lib/test/test_py3kwarn.py +++ b/Lib/test/test_py3kwarn.py @@ -131,7 +131,19 @@ class TestStdlibRemovals(unittest.TestCase): all_platforms = ('audiodev', 'imputil', 'mutex', 'user', 'new', 'rexec', 'Bastion', 'compiler', 'dircache', 'fpformat', 'ihooks', 'mhlib') - inclusive_platforms = {'irix':('pure',)} + inclusive_platforms = {'irix' : ('pure',), + 'darwin' : ('autoGIL', 'Carbon', 'OSATerminology', + 'icglue', 'Nav', 'MacOS', 'aepack', 'aetools' + 'aetypes', 'applesingle', 'appletrawmain', + 'appletrunner', 'argvemulator', 'bgenlocations', + 'EasyDialogs', 'macerrors', 'macostools', + 'findertools', 'FrameWork', 'ic', + 'gensuitemodule', 'icopen', 'macresource', + 'MiniAEFrame', 'pimp', 'PixMapWrapper', + 'terminalcommand', 'videoreader', '_builtinSuites', + 'CodeWarrior', 'Explorer', 'Finder', 'Netscape', + 'StdSuites', 'SystemEvents', 'Terminal', 'cfmfile', + 'bundlebuilder', 'buildtools', 'ColorPicker')} optional_modules = ('bsddb185', 'Canvas', 'dl', 'linuxaudiodev', 'imageop', 'sv') |