diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-05-05 19:09:31 +0000 |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2010-05-05 19:09:31 +0000 |
commit | 9545a23c7ffb35417d451d24cc3b0339627965a7 (patch) | |
tree | 5e22fd30c1c6936970b4d87ca3e91f8428c74983 /Lib/test/test_frozen.py | |
parent | a8157183b89c08cf47c969185d40973ec21a81c5 (diff) | |
download | cpython-git-9545a23c7ffb35417d451d24cc3b0339627965a7.tar.gz |
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/test_frozen.py')
-rw-r--r-- | Lib/test/test_frozen.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Lib/test/test_frozen.py b/Lib/test/test_frozen.py index 5f72a92e22..7fb53a4ba6 100644 --- a/Lib/test/test_frozen.py +++ b/Lib/test/test_frozen.py @@ -23,13 +23,12 @@ class FrozenTests(unittest.TestCase): except ImportError, x: self.fail("import __phello__.spam failed:" + str(x)) - if sys.platform != "mac": # On the Mac this import does succeed. - try: - import __phello__.foo - except ImportError: - pass - else: - self.fail("import __phello__.foo should have failed") + try: + import __phello__.foo + except ImportError: + pass + else: + self.fail("import __phello__.foo should have failed") self.assertEquals(stdout.getvalue(), 'Hello world...\nHello world...\nHello world...\n') |