diff options
| author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-05-05 19:09:31 (GMT) | 
|---|---|---|
| committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-05-05 19:09:31 (GMT) | 
| commit | 9545a23c7ffb35417d451d24cc3b0339627965a7 (patch) | |
| tree | 5e22fd30c1c6936970b4d87ca3e91f8428c74983 /Lib/test/regrtest.py | |
| parent | a8157183b89c08cf47c969185d40973ec21a81c5 (diff) | |
| download | cpython-9545a23c7ffb35417d451d24cc3b0339627965a7.zip cpython-9545a23c7ffb35417d451d24cc3b0339627965a7.tar.gz cpython-9545a23c7ffb35417d451d24cc3b0339627965a7.tar.bz2  | |
In a number of places code still revers
to "sys.platform == 'mac'" and that is
dead code because it refers to a platform
that is no longer supported (and hasn't been
supported for several releases).
Fixes issue #7908 for the trunk.
Diffstat (limited to 'Lib/test/regrtest.py')
| -rwxr-xr-x | Lib/test/regrtest.py | 37 | 
1 files changed, 1 insertions, 36 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 545e0ea..a4139d3 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -1156,41 +1156,6 @@ _expectations = {          test_kqueue          test_ossaudiodev          """, -   'mac': -        """ -        test_atexit -        test_bsddb -        test_bsddb185 -        test_bsddb3 -        test_bz2 -        test_commands -        test_crypt -        test_curses -        test_dbm -        test_dl -        test_fcntl -        test_fork1 -        test_epoll -        test_grp -        test_ioctl -        test_largefile -        test_locale -        test_kqueue -        test_mmap -        test_openpty -        test_ossaudiodev -        test_poll -        test_popen -        test_popen2 -        test_posix -        test_pty -        test_pwd -        test_resource -        test_signal -        test_sundry -        test_tarfile -        test_timing -        """,      'unixware7':          """          test_bsddb @@ -1477,7 +1442,7 @@ class _ExpectedSkips:              if sys.maxint == 9223372036854775807L:                  self.expected.add('test_imageop') -            if not sys.platform in ("mac", "darwin"): +            if sys.platform != "darwin":                  MAC_ONLY = ["test_macos", "test_macostools", "test_aepack",                              "test_plistlib", "test_scriptpackages",                              "test_applesingle"]  | 
