From: Benjamin Peterson Date: Sat, 1 Jun 2013 05:18:26 +0000 (-0700) Subject: frozen modules now apparently have empty __path__ X-Git-Tag: v3.4.0a1~587 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5cfbd2642c32c7b439c1409d649c8bc906990391;p=thirdparty%2FPython%2Fcpython.git frozen modules now apparently have empty __path__ --- diff --git a/Lib/test/test_frozen.py b/Lib/test/test_frozen.py index fd6761c65196..624e32123dc2 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: