diff options
author | Benjamin Peterson <benjamin@python.org> | 2013-06-01 05:18:26 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2013-06-01 05:18:26 (GMT) |
commit | 5cfbd2642c32c7b439c1409d649c8bc906990391 (patch) | |
tree | 871f0bfb3adeea515612323e17104150d5c15d79 /Lib/test/test_frozen.py | |
parent | 3e0651b5fa45031b858556292f5623e264addfd0 (diff) | |
download | cpython-5cfbd2642c32c7b439c1409d649c8bc906990391.zip cpython-5cfbd2642c32c7b439c1409d649c8bc906990391.tar.gz cpython-5cfbd2642c32c7b439c1409d649c8bc906990391.tar.bz2 |
frozen modules now apparently have empty __path__
Diffstat (limited to 'Lib/test/test_frozen.py')
-rw-r--r-- | Lib/test/test_frozen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_frozen.py b/Lib/test/test_frozen.py index fd6761c..624e321 100644 --- a/Lib/test/test_frozen.py +++ b/Lib/test/test_frozen.py @@ -36,7 +36,7 @@ class FrozenTests(unittest.TestCase): else: expect.add('spam') self.assertEqual(set(dir(__phello__)), expect) - self.assertEqual(__phello__.__path__, [__phello__.__name__]) + self.assertEqual(__phello__.__path__, []) self.assertEqual(stdout.getvalue(), 'Hello world!\n') with captured_stdout() as stdout: |